18 lines
892 B
HTML
18 lines
892 B
HTML
{{ define "main" }}
|
|
<h1>All posts tagged with
|
|
<span class="tag">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-tag"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M7.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M3 6v5.172a2 2 0 0 0 .586 1.414l7.71 7.71a2.41 2.41 0 0 0 3.408 0l5.592 -5.592a2.41 2.41 0 0 0 0 -3.408l-7.71 -7.71a2 2 0 0 0 -1.414 -.586h-5.172a3 3 0 0 0 -3 3z" /></svg>
|
|
{{ .Title }}
|
|
</span>
|
|
</h1>
|
|
{{ .Content }}
|
|
{{ range .Pages }}
|
|
<article>
|
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
|
<time>
|
|
{{ .PublishDate.Format "2 January 2006" }}
|
|
</time>
|
|
</article>
|
|
{{ end }}
|
|
{{ end }}
|