optimizations for nicer looking raw html

This commit is contained in:
Vrifox 2020-11-20 22:39:10 +01:00
parent 2b06ee5dfa
commit 59c38330f6
7 changed files with 232 additions and 221 deletions

View file

@ -1,20 +1,21 @@
<footer>
<div class="container">
<section class="website-version">
<span title="{{ now.Format "2. January 2006, 15:04 MST" }}">version {{ now.Format "2006-01-02" }}</span>
</section>
<section class="website-subnav">
<ul>
{{ $currentPage := . }}
{{ range .Site.Menus.footer }}
<li>
<a href="{{ .URL }}">
{{ .Pre }}
<span>{{ .Name }}</span>
</a>
</li>
{{ end }}
</ul>
</section>
</div>
</footer>
<footer>
<div class="container">
<section class="website-version">
<span title="{{ now.Format "2. January 2006, 15:04 MST" }}">version {{ now.Format "2006-01-02" }}</span>
</section>
<section class="website-subnav">
<ul>
{{- $currentPage := . }}
{{- range .Site.Menus.footer }}
<li>
<a href="{{ .URL }}">
{{- .Pre }}
<span>{{ .Name }}</span>
</a>
</li>
{{- end }}
</ul>
</section>
</div>
</footer>