mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 19:06:16 +01:00
25 lines
No EOL
858 B
HTML
25 lines
No EOL
858 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
|
{{ partial "head.html" . }}
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var isDark = (window.localStorage && window.localStorage.getItem('theme')) === 'dark';
|
|
if (isDark) document.body.classList.add('dark-theme');
|
|
</script>
|
|
<div class="wrapper">
|
|
{{ partial "header.html" . }}
|
|
<main class="main">
|
|
<div class="container">
|
|
{{ block "content" . }}{{ end }}
|
|
</div>
|
|
</main>
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "scripts.html" . }}
|
|
</div>
|
|
</body>
|
|
</html> |