]> git.drewedgar.com - website.git/blob - src/_includes/layouts/index.liquid
FIX: Changed git icon
[website.git] / src / _includes / layouts / index.liquid
1 <!doctype html>
2 <html lang="en-US">
3
4 <head>
5   <meta charset="UTF-8">
6   <meta name="viewport" content="width=device-width, initial-scale=1">
7   <link rel="icon" href="/favicon.ico" sizes="32x32">
8   <link rel="apple-touch-icon" href="/apple-touch-icon.png">
9   <style>
10 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
11   {%- include "styles.css" -%}
12   {%- include "cv_styles.css" -%}
13   {%- include "print.css" -%}
14   </style>
15
16   <script>
17   (function() {
18     const savedTheme = localStorage.getItem('theme');
19     if (savedTheme) {
20       document.documentElement.setAttribute('data-theme', savedTheme);
21     } else {
22       document.documentElement.setAttribute('data-theme', 'light');
23     }
24   })();
25   </script>
26
27   <script type="module" src="/assets/video-with-transparency.js"></script>
28
29   {% if scripts %}
30     {% for s in scripts %}
31       <script type="module" src="{{ s.src }}"></script>
32     {% endfor %}
33   {% endif %}
34
35   <title>{{ title }}</title>
36
37 </head>
38 <body>
39
40   <script>
41
42     const icons = {
43       dark: `<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>`,
44       light: `<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg>`
45     };
46
47     const button = document.getElementById("darkModeToggle");
48
49     function updateIcon() {
50       const theme = document.documentElement.getAttribute("data-theme");
51       // Replace existing icon if any
52       const existingIcon = button.querySelector("svg");
53       if (existingIcon) existingIcon.remove();
54
55       // Insert the new icon
56       button.insertAdjacentHTML("afterbegin", icons[theme]);
57     }
58
59     updateIcon();
60
61     document.getElementById("darkModeToggle").addEventListener("click", function() {
62       document.documentElement.classList.add('color-theme-in-transition')
63       const current = document.documentElement.getAttribute('data-theme');
64       const next = current === 'dark' ? 'light' : 'dark';
65       document.documentElement.setAttribute('data-theme', next);
66       localStorage.setItem('theme', next);
67       updateIcon();
68       window.setTimeout(function() {
69         document.documentElement.classList.remove('color-theme-in-transition')
70       }, 500)
71     });
72
73
74   </script>
75
76   <main>
77     {{ content }}
78   </main>
79 </body>
80 </html>