blog/layouts/_default/baseof.html

44 lines
1.3 KiB
HTML
Raw Normal View History

2020-11-03 22:14:45 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-02-08 22:28:03 +00:00
<title>Michael Zhang</title>
2020-11-03 22:14:45 +00:00
2021-11-01 03:45:54 +00:00
{{ block "headExtra" . }}{{ end }}
2022-02-07 22:32:10 +00:00
{{ partial "head" . }}
2021-11-01 03:45:54 +00:00
2020-11-03 22:14:45 +00:00
{{ $style := resources.Get "sass/main.scss" | resources.ToCSS }}
2021-07-06 21:57:42 +00:00
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
2020-11-03 22:14:45 +00:00
</head>
<body>
2022-01-25 00:35:39 +00:00
{{ block "body" . }}
2022-07-19 08:49:38 +00:00
<div class="flex-wrapper">
{{ partial "left-nav" . }}
2020-11-03 22:14:45 +00:00
2022-07-19 08:49:38 +00:00
<div class="sep"></div>
2020-11-03 22:14:45 +00:00
2022-07-19 08:49:38 +00:00
<div class="container">
{{ block "content" . }}{{ end }}
2020-11-03 22:14:45 +00:00
</div>
</div>
2021-07-06 20:58:39 +00:00
<footer>
2020-11-03 22:14:45 +00:00
<p style="margin: 0;">
2022-07-19 08:49:38 +00:00
Blog code licensed under <a
href="https://www.gnu.org/licenses/gpl-3.0.txt"
target="_blank">[GPL-3.0]</a>.
Post contents licensed under <a
href="https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt">[CC
BY-SA 4.0]</a>.
2021-07-06 07:19:39 +00:00
<br />
2022-07-19 08:49:38 +00:00
Written by Michael Zhang.
<a href="https://git.sr.ht/~mzhang/blog" class="colorlink"
target="_blank">[Source]</a>.
2020-11-03 22:14:45 +00:00
</p>
2021-07-06 20:58:39 +00:00
</footer>
2022-01-25 00:35:39 +00:00
{{ end }}
2020-11-03 22:14:45 +00:00
</body>
</html>