2016-11-02 23:10:49 -04:00
|
|
|
<div class="links">
|
|
|
|
<a href="{{ .Site.BaseURL }}">Home</a>
|
|
|
|
{{ range first 1 (where .Site.Pages "Type" "post") }}
|
2016-11-03 09:11:22 -04:00
|
|
|
<a href="{{ .Site.BaseURL }}/post/">Archive</a>
|
2016-11-02 23:10:49 -04:00
|
|
|
{{ end }}
|
|
|
|
{{ range where .Site.Pages "Type" "!=" "post" }}
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
{{ end }}
|
|
|
|
<a href="#top">Top</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|