mirror of
https://github.com/itme-brain/itme-brain.github.io.git
synced 2026-03-23 12:09:44 -04:00
20 lines
No EOL
920 B
HTML
20 lines
No EOL
920 B
HTML
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- Theme script: runs before CSS to prevent flash of wrong theme -->
|
|
<script>
|
|
(function() {
|
|
var stored = localStorage.getItem('theme');
|
|
var prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
|
document.documentElement.setAttribute('data-theme', stored || (prefersDark ? 'dark' : 'light'));
|
|
})();
|
|
</script>
|
|
|
|
<!-- Google Fonts: Inter -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap">
|
|
|
|
<link rel="stylesheet" href="{{ '/css/styles.css' | relative_url }}">
|
|
<script src="https://kit.fontawesome.com/f26d369dc4.js" crossorigin="anonymous"></script> |