File tree Expand file tree Collapse file tree 5 files changed +49
-8
lines changed Expand file tree Collapse file tree 5 files changed +49
-8
lines changed Original file line number Diff line number Diff line change 36
36
37
37
{% if page.title == 'Home' %}
38
38
< link rel ="stylesheet " href ="{{ "/css/index.css" | relative_url }}">
39
+ < link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/devicon/2.16.0/devicon.min.css " integrity ="sha512-BlFCHJWngPEHme4TwlEob6dPLfoNaQBTTISPwr4344nxR353w2vgGZ7GiSadbbeR20cJeeM0u1I2lAZuIZ1aOQ== " crossorigin ="anonymous " referrerpolicy ="no-referrer " />
40
+ {% comment %}< link rel ="stylesheet " type ='text/css ' href ="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css " /> {% endcomment %}
39
41
{% endif %}
40
42
{% if page.title == 'Feedback' %}
41
43
< link rel ="stylesheet " href ="{{ "/css/feedback.css" | relative_url }}">
Original file line number Diff line number Diff line change 6
6
7
7
# back-to-top {
8
8
position : fixed;
9
- bottom : 64 px ;
10
- right : 20 px ;
9
+ bottom : 50 px ;
10
+ right : 10 px ;
11
11
display : none;
12
12
z-index : 3 ;
13
13
}
Original file line number Diff line number Diff line change @@ -68,9 +68,13 @@ <h4 class="card-title">
68
68
< div class ="card-footer "> </ div >
69
69
</ div >
70
70
</ div >
71
- < i class ="fa-brands fa-js " title ="JavaScript "> </ i >
72
- < i class ="fa-brands fa-python " title ="Python "> </ i >
73
- < i class ="fa-solid fa-terminal " title ="Shell Script "> </ i >
71
+ {% comment %}< i class ="fa-brands fa-js " title ="JavaScript "> </ i > {% endcomment %}
72
+ {% comment %}< i class ="fa-brands fa-python " title ="Python "> </ i > {% endcomment %}
73
+ {% comment %}< i class ="fa-solid fa-terminal " title ="Shell Script "> </ i > {% endcomment %}
74
+ < i class ="devicon-powershell-plain " data-bs-toggle ="tooltip " data-bs-placement ="bottom " data-bs-title ="Shell Script "> </ i >
75
+ < i class ="devicon-python-plain colored " data-bs-toggle ="tooltip " data-bs-placement ="bottom " data-bs-title ="Python "> </ i >
76
+ < i class ="devicon-javascript-plain colored " data-bs-toggle ="tooltip " data-bs-placement ="bottom " data-bs-title ="JavaScript "> </ i >
77
+ < i class ="devicon-typescript-plain colored " data-bs-toggle ="tooltip " data-bs-placement ="bottom " data-bs-title ="TypeScript "> </ i >
74
78
</ div > <!-- d-none clone -->
75
79
76
80
< div class ="text-center bounce d-none " id ="scroll-down ">
Original file line number Diff line number Diff line change @@ -330,6 +330,33 @@ const githubActions = [
330
330
} ,
331
331
fa : 'faPython' ,
332
332
} ,
333
+ {
334
+ name : 'JavaScript Template Action' ,
335
+ url : 'https://github.com/smashedr/js-test-action' ,
336
+ description : 'Template for JavaScript Actions.' ,
337
+ links : {
338
+ GitHub : 'https://github.com/smashedr/js-test-action' ,
339
+ } ,
340
+ fa : 'faJs' ,
341
+ } ,
342
+ {
343
+ name : 'TypeScript Template Action' ,
344
+ url : 'https://github.com/smashedr/ts-test-action' ,
345
+ description : 'Template for TypeScript Actions.' ,
346
+ links : {
347
+ GitHub : 'https://github.com/smashedr/ts-test-action' ,
348
+ } ,
349
+ fa : 'faTs' ,
350
+ } ,
351
+ {
352
+ name : 'Python Template Action' ,
353
+ url : 'https://github.com/smashedr/py-test-action' ,
354
+ description : 'Template for Python Actions.' ,
355
+ links : {
356
+ GitHub : 'https://github.com/smashedr/py-test-action' ,
357
+ } ,
358
+ fa : 'faPython' ,
359
+ } ,
333
360
]
334
361
const otherSoftware = [
335
362
{
Original file line number Diff line number Diff line change @@ -9,9 +9,10 @@ const actionsContainer = document.getElementById('actions-container')
9
9
const otherContainer = document . getElementById ( 'other-container' )
10
10
11
11
const faIcons = {
12
- faPython : document . querySelector ( '.clone .fa-python' ) ,
13
- faJs : document . querySelector ( '.clone .fa-js' ) ,
14
- faShell : document . querySelector ( '.clone .fa-terminal' ) ,
12
+ faPython : document . querySelector ( '.clone .devicon-python-plain' ) ,
13
+ faJs : document . querySelector ( '.clone .devicon-javascript-plain' ) ,
14
+ faTs : document . querySelector ( '.clone .devicon-typescript-plain' ) ,
15
+ faShell : document . querySelector ( '.clone .devicon-powershell-plain' ) ,
15
16
}
16
17
17
18
// // Scroll Handlers
@@ -74,6 +75,13 @@ async function domContentLoaded() {
74
75
checkScroll ( )
75
76
}
76
77
78
+ document
79
+ . querySelectorAll ( '[data-bs-toggle="tooltip"]' )
80
+ . forEach ( ( el ) => new bootstrap . Tooltip ( el ) )
81
+ // document
82
+ // .querySelectorAll('[data-bs-toggle="popover"]')
83
+ // .forEach((el) => new bootstrap.Popover(el))
84
+
77
85
AOS . init ( { disable : 'mobile' } )
78
86
// AOS.init()
79
87
You can’t perform that action at this time.
0 commit comments