Files
davideisinger.com/themes/v2/layouts/notes/single.html
2023-04-30 23:22:11 -04:00

27 lines
490 B
HTML

{{ define "main" }}
<hr>
<h2>{{ .Title }}</h2>
{{ .Content }}
{{ with .Params.References }}
<hr>
<div class="references">
<h3>References</h3>
<ul>
{{ range . }}
<li>
<a href="{{ .url }}">{{ .title }}</a>”;
<a href="/archive/{{ .file }}">
backed up {{ .date | time.Format "2006-01-02 15:04:05 MST" }}
</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}
{{ end }}