2022-04-14 20:07:48 +00:00
<!DOCTYPE html>
< html lang = "{{ .Site.Language }}" >
2024-02-07 23:08:16 +00:00
{{ partial "head.html" . }}
2022-04-14 20:07:48 +00:00
< body >
2022-11-05 05:20:40 +00:00
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
< main >
< header > < h1 id = "tag_{{ .Title }}" > {{ block "title" . }}{{ end }}< / h1 > < / header >
< article >
{{ block "main" . }}
{{ .Content }}
{{ end }}
2022-11-29 21:08:50 +00:00
{{ if not .IsHome }} < br > < hr > < br > {{end -}}
2022-11-05 05:20:40 +00:00
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
< / article >
< / main >
{{ block "footer" . }}
< footer >
< a href = "{{ .Site.BaseURL }}" > {{ .Site.BaseURL }}< / a >
{{- if .Param "showrss" }}< br > < br > < a href = "/index.xml" > < img src = "/rss.svg" style = "max-height:1.5em" alt = "RSS Feed" title = "Subscribe via RSS for updates." > < / a > {{ end }}
< / footer >
{{ end }}
2022-09-20 21:10:53 +00:00
< / body >
2024-02-07 23:08:16 +00:00
< / html >