added bottom line

This commit is contained in:
Rushmore75 2022-11-04 23:20:40 -06:00 committed by Oliver Atkinson
parent 2ab0afd412
commit ef7a9471cd

View File

@ -3,24 +3,24 @@
{{ partial "head.html" . }} {{ partial "head.html" . }}
<body> <body>
{{ block "header" . }} {{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
{{ partial "header.html" . }} <main>
{{ end }} <header><h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1></header>
<main> <article>
<div class="article-header"> {{ block "main" . }}
<h3 class="spaced"> {{ .Content }}
{{ .Page.Title }} {{ end }}
</h3> <br><hr><br>
</div> {{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
<article> {{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
{{ block "main" . }} </article>
{{ .Content }} </main>
{{ end }} {{ block "footer" . }}
</article> <footer>
{{ block "footer" . }} <a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
{{ partial "footer.html" . }} {{- 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 }}
{{ end }} </footer>
</main> {{ end }}
</body> </body>
</html> </html>