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', 'light');
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>
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>`
47 const button = document.getElementById("darkModeToggle");
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();
55 // Insert the new icon
56 button.insertAdjacentHTML("afterbegin", icons[theme]);
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);
68 window.setTimeout(function() {
69 document.documentElement.classList.remove('color-theme-in-transition')