light-hugo/layouts/partials/footer.html

21 lines
505 B
HTML
Raw Normal View History

2016-11-02 23:10:49 -04:00
<div class="links">
<a href="{{.Site.BaseURL}}">Home</a>
2016-11-02 23:10:49 -04:00
{{ range first 1 (where .Site.Pages "Type" "post") }}
<a href="{{"/post/" | relURL}}">Archive</a>
2016-11-02 23:10:49 -04:00
{{ end }}
{{ range where .Site.Pages "Section" "pages" }}
2017-04-19 16:32:28 -04:00
{{ if .IsPage }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ end }}
2016-11-02 23:10:49 -04:00
{{ end }}
<a href="#top">Top</a>
</div>
{{ partial "foot.html" . }}
2016-11-09 16:33:43 -05:00
{{ if .Site.Copyright }}
<p id="copyright">
{{ .Site.Copyright }}
</p>
{{ end }}
2016-11-02 23:10:49 -04:00
</body>
</html>