legit/templates/file.html

24 lines
372 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>
2022-12-13 06:20:39 +00:00
<pre>
{{ range .linecount }}
<a id="#L{{ . }}" href="#{{ . }}">{{ . }}</a>
{{- end -}}
</pre>
2022-12-11 08:48:39 +00:00
<pre>
2022-12-11 15:47:04 +00:00
{{ .content }}
2022-12-11 08:48:39 +00:00
</pre>
</main>
</body>
</html>
{{ end }}