2020-08-12 17:15:08 -05:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
2022-05-29 15:56:13 -05:00
|
|
|
<!-- CSS - Local -->
|
2020-08-13 07:39:50 -05:00
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/index.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/navbar.css" />
|
2022-05-29 17:04:57 -05:00
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/tailwind.min.css" />
|
2022-05-29 15:56:13 -05:00
|
|
|
|
|
|
|
<!-- CSS - Remote -->
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/konpa/devicon@master/devicon.min.css">
|
|
|
|
|
|
|
|
<!-- Favicon -->
|
2020-08-15 08:02:42 -05:00
|
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
2022-05-29 15:56:13 -05:00
|
|
|
|
|
|
|
<!-- JS - Remote -->
|
2020-08-12 18:27:16 -05:00
|
|
|
<script src="https://use.fontawesome.com/releases/v5.14.0/js/all.js"></script>
|
2020-08-13 05:49:55 -05:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.addEventListener('scroll', ()=>{
|
|
|
|
const nav = document.querySelector('nav')
|
|
|
|
nav.classList.toggle('onscroll', window.scrollY > 0)
|
|
|
|
})
|
2022-05-29 15:56:13 -05:00
|
|
|
</script>
|