-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
843 lines (797 loc) · 31.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
<!DOCTYPE html>
<html lang="en">
<head>
<title>Boootstrap Portfolio/Resume Theme for Developers</title>
<!-- Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Boootstrap Portfolio/Resume Theme for Developers"
/>
<meta name="author" content="Xiaoying Riley at 3rd Wave Media" />
<link rel="shortcut icon" href="favicon.ico" />
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,300italic,400italic"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,700"
rel="stylesheet"
type="text/css"
/>
<!-- FontAwesome JS -->
<script defer src="assets/fontawesome/js/all.js"></script>
<!-- Global CSS -->
<link
rel="stylesheet"
href="assets/plugins/bootstrap/css/bootstrap.min.css"
/>
<!-- github calendar css -->
<link
rel="stylesheet"
href="assets/plugins/github-calendar/dist/github-calendar.css"
/>
<!-- github activity css -->
<link
rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/octicons/2.0.2/octicons.min.css"
/>
<link
rel="stylesheet"
href="assets/plugins/github-activity/github-activity-0.1.5.min.css"
/>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<!-- ******HEADER****** -->
<header class="header">
<div class="container clearfix">
<img
class="profile-image img-fluid float-left rounded-circle"
src="assets/images/profile.png"
alt="profile image"
/>
<div class="profile-content float-left">
<h1 class="name">Carter Stevens</h1>
<h2 class="desc">Junior Front end Developer</h2>
<ul class="social list-inline">
<li class="list-inline-item">
<a href="https://twitter.com/cartergriffith9"
><i class="fab fa-twitter"></i
></a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/carter-stevens-2a6382208/"
><i class="fab fa-linkedin-in"></i
></a>
</li>
<li class="list-inline-item">
<a href="https://github.com/CarterStevens1"
><i class="fab fa-github-alt"></i
></a>
</li>
<li class="list-inline-item">
<a href="#"><i class="fab fa-stack-overflow"></i></a>
</li>
<li class="list-inline-item last-item">
<a href="https://codepen.io/carterstevens1"
><i class="fab fa-codepen"></i
></a>
</li>
</ul>
</div>
<!--//profile-->
<a class="btn btn-cta-primary float-right" href="" target="_blank"
><i class="fas fa-paper-plane"></i> Contact Me</a
>
</div>
<!--//container-->
</header>
<!--//header-->
<div class="container sections-wrapper">
<div class="row">
<div class="primary col-lg-8 col-12">
<section class="about section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">About Me</h2>
<div class="content">
<p>
Hello, I am a 21 year old self taught programmer looking to
become a professional Front end developer! I am a very
enthusiastic individiual who loves learning new things and
being better at everything i do. I am currently in search of my
first professional role!
My aim is to become a professional developer and push myself to become a top web developer!
<br>
Currently Learning Python and VUE.js<br />
<br />
My hobbies include - Gaming, Reading, Fitness, Exploring,
seeing friends. I am very interested in improving myself to be
better, Going to the gym and becoming a better person is a big
thing for me.
</p>
</div>
<!--//content-->
</div>
<!--//section-inner-->
</section>
<!--//section-->
<section class="latest section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Latest Projects</h2>
<div class="content">
<div class="item featured text-center">
<div class="featured-image has-ribbon">
<a
href="https://carterstevens1.github.io/Coffee2.github.io/"
target="_blank"
>
<img
class="img-fluid project-image rounded shadow-sm"
src="assets/images/coffee2.png"
alt="project name"
/>
</a>
<div class="ribbon">
<div class="text">New</div>
</div>
</div>
<h3 class="title mb-3">
<a
href="https://carterstevens1.github.io/Coffee2.github.io/"
target="_blank"
>Coffee Webpage</a
>
</h3>
<div class="desc text-left">
<p>
Take a look at one of my favourite projects so far, this was done to test my coding to see where I am at currently and for me to improve further.
</p>
</div>
<!--//desc-->
<a
class="btn btn-cta-secondary"
href="https://themes.3rdwavemedia.com/bootstrap-templates/startup/launch-bootstrap-4-template-for-saas-businesses/"
target="_blank"
><i class="fas fa-thumbs-up"></i> Check it out!</a
>
</div>
<!--//item-->
<hr class="divider" />
<div class="item row">
<a
class="col-md-4 col-12"
href="https://themes.3rdwavemedia.com/bootstrap-templates/startup/coderpro-bootstrap-4-startup-template-for-software-projects/"
target="_blank"
>
<img
class="img-fluid project-image rounded shadow-sm"
src="assets/images/coffee1.png"
alt="project name"
/>
</a>
<div class="desc col-md-8 col-12">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/Coffee1"
target="_blank"
>Coffee1</a
>
</h3>
<p>This is the other coffee site I have made when I was a bit more inexperienced learning to code a bit better this helped me develop my layout skills
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/Coffee1"
target="_blank"
><i class="fas fa-external-link-alt"></i>Find out
more</a
>
</p>
</div>
<!--//desc-->
</div>
<!--//item-->
<div class="item row">
<a
class="col-md-4 col-12"
href="https://themes.3rdwavemedia.com/bootstrap-templates/resume/devcard-bootstrap-4-vcard-portfolio-template-for-software-developers/"
target="_blank"
>
<img
class="img-fluid project-image rounded shadow-sm"
src="assets/images/desktop-preview.jpg"
alt="project name"
/>
</a>
<div class="desc col-md-8 col-12">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/Social-Media-follower-account"
target="_blank"
>Social Dashboard</a
>
</h3>
<p class="mb-2">
A social dashboard, implemented dark mode into it while also working on my styling.
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/Social-Media-follower-account"
target="_blank"
><i class="fas fa-external-link-alt"></i>Find out
more</a
>
</p>
</div>
<!--//desc-->
</div>
<!--//item-->
<div class="item row">
<a
class="col-md-4 col-12"
href="https://github.com/CarterStevens1/Training-site"
target="_blank"
>
<img
class="img-fluid project-image rounded shadow-sm"
src="assets/images/trainingsite.png"
alt="project name"
/>
</a>
<div class="desc col-md-8 col-12">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/Training-site"
target="_blank"
>C's Gym - Training Website</a
>
</h3>
<p class="mb-2">
This is a self project working on a topic which i enjoy, I love working out and going to the gym so I made a site to work on that and show my interests.
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/Training-site"
target="_blank"
><i class="fas fa-external-link-alt"></i>Find out
more</a
>
</p>
</div>
<!--//desc-->
</div>
<!--//item-->
<div class="item row">
<a
class="col-md-4 col-12"
href="https://github.com/CarterStevens1/Google-page-recreation"
target="_blank"
>
<img
class="img-fluid project-image rounded shadow-sm"
src="assets/images/google.png"
alt="project name"
/>
</a>
<div class="desc col-md-8 col-12">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/Google-page-recreation"
target="_blank"
>Google Page</a
>
</h3>
<p class="mb-2">
Aim of this was to recreate the google page as close as possible to work on design and future projects
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/Google-page-recreation"
target="_blank"
><i class="fas fa-external-link-alt"></i>Find out
more</a
>
</p>
</div>
<!--//desc-->
</div>
<!--//item-->
<div class="item row">
<a
class="col-md-4 col-12"
href="https://github.com/CarterStevens1/4-Rivers-Smokehouse"
target="_blank"
>
<img
class="img-fluid project-image rounded shadow-sm"
src="assets/images/4rivers.jpg"
alt="project name"
/>
</a>
<div class="desc col-md-8 col-12">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/4-Rivers-Smokehouse"
target="_blank"
>4 Rivers Smokehouse</a
>
</h3>
<p class="mb-2">
This was my first ever project. Given to me by my mentor I was asked to recreate a website as close as possible and add some javascript to it for fundamentality. The aim was not to have the page completly static.
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/4-Rivers-Smokehouse"
target="_blank"
><i class="fas fa-external-link-alt"></i>Find out
more</a
>
</p>
</div>
<!--//desc-->
</div>
<!--//item-->
</div>
<!--//content-->
</div>
<!--//section-inner-->
</section>
<!--//section-->
<section class="projects section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Other Projects</h2>
<div class="content">
<div class="item">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/discord"
target="_blank"
>Discord Bot</a
>
<span class="badge badge-theme">Free</span>
</h3>
<p class="summary">
I worked on creating a Discord bot to expand on my Javascript code, Still adding to it when I am not working on any webpages. Very enjoyable project
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/discord"
target="_blank"
><i class="fas fa-external-link-alt"></i>Check it out</a
>
</p>
</div>
<!--//item-->
<div class="item">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/login-form"
target="_blank"
>Login Form</a
>
<span class="badge badge-theme">Free</span>
</h3>
<p class="summary">
A basic log in form to work on different additions to a webpage
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/login-form"
target="_blank"
><i class="fas fa-external-link-alt"></i>Check it out!</a
>
</p>
</div>
<!--//item-->
<div class="item">
<h3 class="title">
<a
href="https://github.com/CarterStevens1/split-site"
target="_blank"
>Split Site</a
>
<span class="badge badge-theme">Free</span>
</h3>
<p class="summary">
Created a small split site function. Hover animation to grow the one side of the page and vice versa
</p>
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1/split-site"
target="_blank"
><i class="fas fa-external-link-alt"></i>Check it out!</a
>
</p>
</div>
<!--//item-->
<a class="btn btn-cta-secondary" href="#"
>More on GitHub <i class="fas fa-chevron-right pt-1"></i
></a>
</div>
<!--//content-->
</div>
<!--//section-inner-->
</section>
<!--//section-->
<section class="experience section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Work Experience</h2>
<div class="content">
<div class="item">
<h3 class="title">
Currently looking for my first role in development!
Building a website for a small business as freelance work.
<span class="place"><a href="#"></a></span>
<span class="year"></span>
</h3>
<p></p>
</div>
<!--//item-->
<!--//item-->
</div>
<!--//content-->
</div>
<!--//section-inner-->
</section>
<!--//section-->
<section class="github section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">My GitHub</h2>
<p>
Check out my github work for all my projects!
</p>
<div id="ghfeed" class="ghfeed"></div>
<!--//ghfeed-->
</div>
<!--//secton-inner-->
</section>
<!--//section-->
</div>
<!--//primary-->
<div class="secondary col-lg-4 col-12">
<aside class="info aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading sr-only">Basic Information</h2>
<div class="content">
<ul class="list-unstyled">
<li>
<i class="fas fa-map-marker-alt"></i
><span class="sr-only">Location:</span>Cardiff, GB
</li>
<li>
<i class="fas fa-envelope"></i
><span class="sr-only">Email:</span
><a href="#">[email protected]</a>
</li>
<li>
<i class="fas fa-link"></i
><span class="sr-only">Website:</span
><a href="https://github.com/CarterStevens1"
>https://github.com/CarterStevens1</a
>
</li>
</ul>
</div>
<!--//content-->
</div>
<!--//section-inner-->
</aside>
<!--//aside-->
<aside class="skills aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Skills</h2>
<div class="content">
<p class="intro">
I have capabilities in HTML, JS and CSS. Able to write up
clean code and debug lines of code while tidying them up to
make them look more readable! Currently learning Vue.js and Python
and more website designing skills. Check my Github for info.
</p>
<div class="skillset">
<div class="item">
<h3 class="level-title">
HTML5<span
class="level-label"
data-toggle="tooltip"
data-placement="left"
data-animation="true"
title="Advanced HTML usage, code layout and confident"
><i class="fas fa-info-circle"></i>Intermediate</span
>
</h3>
<div class="level-bar">
<div class="level-bar-inner" data-level="75%"></div>
</div>
<!--//level-bar-->
</div>
<!--//item-->
<div class="item">
<h3 class="level-title">
JS & jQuery & Vue.JS<span
class="level-label"
data-toggle="tooltip"
data-placement="left"
data-animation="true"
title="Still learning but know a good amount of JS and can write up good usable code"
><i class="fas fa-info-circle"></i>Intermediate</span
>
</h3>
<div class="level-bar">
<div class="level-bar-inner" data-level="60%"></div>
</div>
<!--//level-bar-->
</div>
<!--//item-->
<div class="item">
<h3 class="level-title">
CSS, SASS, SCSS
<span
class="level-label"
data-toggle="tooltip"
data-placement="left"
data-animation="true"
title="Confident page layout styling"
><i class="fas fa-info-circle"></i>Intermediate</span
>
</h3>
<div class="level-bar">
<div class="level-bar-inner" data-level="70%"></div>
</div>
<!--//level-bar-->
</div>
<!--//item-->
<div class="item">
<h3 class="level-title">
Python<span
class="level-label"
data-toggle="tooltip"
data-placement="left"
data-animation="true"
title="Knows basic C# but focusing on front end work"
><i class="fas fa-info-circle"></i>Beginner</span
>
</h3>
<div class="level-bar">
<div class="level-bar-inner" data-level="50%"></div>
</div>
<!--//level-bar-->
</div>
<!--//item-->
<p>
<a
class="more-link"
href="https://github.com/CarterStevens1"
><i class="fas fa-external-link-alt"></i>More on GitHub</a
>
</p>
</div>
</div>
<!--//content-->
</div>
<!--//section-inner-->
</aside>
<!--//section-->
<aside class="testimonials aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Testimonials</h2>
<div class="content">
<div class="item">
<blockquote class="quote">
<p>
<i class="fas fa-quote-left"></i>
</p>
</blockquote>
<p class="source">
<span class="name"></span><br /><span class="title"
></span
>
</p>
</div>
<!--//item-->
<p>
<a class="more-link" href="https://www.linkedin.com/in/carter-stevens-2a6382208/"
><i class="fas fa-external-link-alt"></i>More on Linkedin</a
>
</p>
</div>
<!--//content-->
</div>
<!--//section-inner-->
</aside>
<!--//section-->
<aside class="education aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Education</h2>
<div class="content">
<div class="item">
<h3 class="title">
<i class=""></i> The Complete JavaScript Course 2021: From
Zero to Expert!
</h3>
<h4 class="university">
Udemy
<span class="year">(2021)</span>
</h4>
</div>
<div class="item">
<h3 class="title">
<i class=""></i> Self-study courses
</h3>
</div>
<!--//item-->
<div class="item">
<h3 class="title">
<i class=""></i>
</h3>
<h4 class="university">
<span class="year"></span>
</h4>
</div>
<!--//item-->
</div>
<!--//content-->
</div>
<!--//section-inner-->
</aside>
<!--//section-->
<aside class="languages aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Languages</h2>
<div class="content">
<ul class="list-unstyled">
<li class="item">
<span class="title"><strong>English:</strong></span>
<span class="level"
>Native Speaker <br class="visible-xs" /><i
class="fas fa-star"
></i>
<i class="fas fa-star"></i> <i class="fas fa-star"></i>
<i class="fas fa-star"></i> <i class="fas fa-star"></i>
</span>
</li>
<!--//item-->
<!--//item-->
</ul>
</div>
<!--//content-->
</div>
<!--//section-inner-->
</aside>
<!--//section-->
<aside class="list music aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Favourite coding music</h2>
<div class="content">
<ul class="list-unstyled">
<li>
<i class="fas fa-headphones"></i>
<a href="https://open.spotify.com/track/1F9kEuwT29fgqlovIclu81?si=588de903640f48f2">Love Race - MGK, Kellin Quinn</a>
</li>
<li>
<i class="fas fa-headphones"></i>
<a href="https://open.spotify.com/playlist/1xNWydoMmA8210KeHU948w?si=c2ef6d9b88bb4fd6">MrSuicideSheep Favourites - Playlist</a>
</li>
</ul>
</div>
<!--//content-->
</div>
<!--//section-inner-->
</aside>
<!--//section-->
<aside class="credits aside section">
<div class="section-inner shadow-sm rounded">
<h2 class="heading">Credits</h2>
<div class="content">
<ul class="list-unstyled pb-2">
<li>
<a href="https://getbootstrap.com/" target="_blank"
><i class="fas fa-external-link-alt"></i>Bootstrap</a
>
</li>
<li>
<a
href="https://fortawesome.github.io/Font-Awesome/"
target="_blank"
><i class="fas fa-external-link-alt"></i>FontAwesome</a
>
</li>
<li>
<a href="https://jquery.com/" target="_blank"
><i class="fas fa-external-link-alt"></i>jQuery</a
>
</li>
<li>
<a
href="https://github.com/IonicaBizau/github-calendar"
target="_blank"
><i class="fas fa-external-link-alt"></i>GitHub Calendar
Plugin</a
>
</li>
<li>
<a
href="https://caseyscarborough.com/projects/github-activity/"
target="_blank"
><i class="fas fa-external-link-alt"></i>GitHub Activity
Stream</a
>
</li>
<li>
<a
href="https://github.com/sdepold/jquery-rss"
target="_blank"
><i class="fas fa-external-link-alt"></i>jQuery RSS</a
>
</li>
</ul>
<!--//content-->
</div>
<!--//section-inner-->
</aside>
<!--//section-->
</div>
<!--//secondary-->
</div>
<!--//row-->
</div>
<!--//masonry-->
<!-- ******FOOTER****** -->
<footer class="footer">
<div class="container text-center">
<!--/* This template is free as long as you keep the attribution link below. Thank you for your support. :) If you'd like to use the template without the attribution, you can buy the commercial license via our website: themes.3rdwavemedia.com */-->
<small class="copyright"
>Designed with <i class="fas fa-heart"></i> by
<a href="https://themes.3rdwavemedia.com" target="_blank"
>Xiaoying Riley</a
>
for developers</small
>
</div>
<!--//container-->
</footer>
<!--//footer-->
<!-- Javascript -->
<script
type="text/javascript"
src="assets/plugins/jquery-3.4.1.min.js"
></script>
<script type="text/javascript" src="assets/plugins/popper.min.js"></script>
<script
type="text/javascript"
src="assets/plugins/bootstrap/js/bootstrap.min.js"
></script>
<script
type="text/javascript"
src="assets/plugins/jquery-rss/dist/jquery.rss.min.js"
></script>
<!-- github calendar plugin -->
<script
type="text/javascript"
src="assets/plugins/github-calendar/dist/github-calendar.min.js"
></script>
<!-- github activity plugin -->
<script
type="text/javascript"
src="//cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.2/mustache.min.js"
></script>
<script
type="text/javascript"
src="assets/plugins/github-activity/github-activity-0.1.5.min.js"
></script>
<!-- custom js -->
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>