34 lines
930 B
HTML
34 lines
930 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
|
|
<main>
|
|
<header>
|
|
<h1 id="tag_{{ .Title }}">
|
|
{{ if .IsHome }} {{ .Site.Title }} {{ end }}
|
|
{{ block "title" . }}
|
|
{{ end }}</h1>
|
|
<h4 id="tag_{{ .Title }}">
|
|
{{ if not .IsHome }} {{ .Params.description }} {{ end }}
|
|
</h4>
|
|
</header>
|
|
<article>
|
|
{{ block "main" . }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
{{ if not .IsHome }} <br><hr><br> {{end -}}
|
|
{{ 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 }}
|
|
</body>
|
|
|
|
</html> |