65d2bef432
* change link to css to relative * change further site navigation links to relative links and site variables
20 lines
505 B
HTML
20 lines
505 B
HTML
<div class="links">
|
|
<a href="{{.Site.BaseURL}}">Home</a>
|
|
{{ range first 1 (where .Site.Pages "Type" "post") }}
|
|
<a href="{{"/post/" | relURL}}">Archive</a>
|
|
{{ end }}
|
|
{{ range where .Site.Pages "Section" "pages" }}
|
|
{{ if .IsPage }}
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
<a href="#top">Top</a>
|
|
</div>
|
|
{{ partial "foot.html" . }}
|
|
{{ if .Site.Copyright }}
|
|
<p id="copyright">
|
|
{{ .Site.Copyright }}
|
|
</p>
|
|
{{ end }}
|
|
</body>
|
|
</html>
|