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">
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" -%}
18 const savedTheme = localStorage.getItem('theme');
20 document.documentElement.setAttribute('data-theme', savedTheme);
22 document.documentElement.setAttribute('data-theme', 'dark');
27 <script type="module" src="/assets/video-with-transparency.js"></script>
30 {% for s in scripts %}
31 <script type="module" src="{{ s.src }}"></script>
35 <title>{{ title }}</title>
39 {% include "components/nav-header.liquid" %}
44 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>`,
45 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>`
48 const button = document.getElementById("darkModeToggle");
50 function updateIcon() {
51 const theme = document.documentElement.getAttribute("data-theme");
52 // Replace existing icon if any
53 const existingIcon = button.querySelector("svg");
54 if (existingIcon) existingIcon.remove();
56 // Insert the new icon
57 button.insertAdjacentHTML("afterbegin", icons[theme]);
62 document.getElementById("darkModeToggle").addEventListener("click", function() {
63 document.documentElement.classList.add('color-theme-in-transition')
64 const current = document.documentElement.getAttribute('data-theme');
65 const next = current === 'dark' ? 'light' : 'dark';
66 document.documentElement.setAttribute('data-theme', next);
67 localStorage.setItem('theme', next);
69 window.setTimeout(function() {
70 document.documentElement.classList.remove('color-theme-in-transition')
80 {% include "components/footer.liquid" %}