lugo/layouts/_default/baseof.html

34 lines
930 B
HTML
Raw Normal View History

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>
2023-01-07 21:09:01 +00:00
<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>
2022-11-05 05:20:40 +00:00
<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>