LoveIt/layouts/_default/baseof.html

26 lines
922 B
HTML
Raw Normal View History

2019-02-03 12:30:44 +01:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
2019-08-04 21:53:35 +08:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
2019-08-09 21:25:13 +08:00
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
2019-08-04 21:53:35 +08:00
{{ partial "head.html" . }}
</head>
<body>
<script>
var isDark = (window.localStorage && window.localStorage.getItem('theme')) === 'dark';
if (isDark) document.body.classList.add('dark-theme');
</script>
2019-08-04 21:53:35 +08:00
<div class="wrapper">
2019-08-05 21:15:01 +08:00
{{ partial "header.html" . }}
2019-08-04 21:53:35 +08:00
<main class="main">
<div class="container">
{{ block "content" . }}{{ end }}
</div>
</main>
{{ partial "footer.html" . }}
2019-08-19 01:36:52 +08:00
{{ partial "scripts.html" . }}
2019-08-04 21:53:35 +08:00
</div>
<a href="#" id="dynamic-to-top"><span>&nbsp;</span></a>
2019-08-04 21:53:35 +08:00
</body>
2019-08-19 01:36:52 +08:00
</html>