legit/templates/file.html

19 lines
270 B
HTML
Raw Normal View History

2022-12-11 08:48:39 +00:00
{{ define "file" }}
<html>
{{ template "head" . }}
<header>
<h1>{{ .meta.Title }}</h1>
<h2>{{ .meta.Description }}</h2>
</header>
<body>
{{ template "nav" . }}
<main>
<pre>
2022-12-11 15:47:04 +00:00
{{ .content }}
2022-12-11 08:48:39 +00:00
</pre>
</main>
</body>
</html>
{{ end }}