blog/layouts/_default/baseof.html

52 lines
1.6 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" />
2023-04-20 19:11:41 +00:00
<title>
{{ block "title" . }}{{ end }}
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
2022-11-05 23:57:34 +00:00
{{ if .IsHome }}
<link rel="me" href="https://fosstodon.org/@mzhang" />
2023-03-26 19:32:38 +00:00
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/index.xml" />
2022-11-05 23:57:34 +00:00
{{ end }}
2020-11-03 22:14:45 +00:00
{{ $style := resources.Get "sass/main.scss" | resources.ToCSS }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" crossorigin="anonymous" />
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>
2022-09-26 17:58:51 +00:00
<p>
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.
2023-02-04 07:25:40 +00:00
<a href="https://git.mzhang.io/michael/blog" class="colorlink"
2022-07-19 08:49:38 +00:00
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>