You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<nav class="navigation">
|
|
|
|
{{ if not .IsHome }}
|
|
|
|
<a href="{{ "/" | relURL }}"> <span class="arrow">←</span>{{ with .Site.Params.home }}{{ . }}{{ else }}Home{{ end }}</a>
|
|
|
|
{{ end }}
|
|
|
|
<a href="{{ "/posts" | relURL }}">{{ with .Site.Params.archive }}{{ . }}{{ else }}Archive{{ end }}</a>
|
|
|
|
<a href="{{ "/tags" | relURL }}">{{ with .Site.Params.tags }}{{ . }}{{ else }}Tags{{ end }}</a>
|
|
|
|
<a href="{{ "/about" | relURL }}">{{ with .Site.Params.about }}{{ . }}{{ else }}About{{ end }}</a>
|
|
|
|
|
|
|
|
{{ range $element := .Site.Params.Links }}
|
|
|
|
<a href="{{ $element.path }}">{{ $element.name }}</a>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.enableRSS }}
|
|
|
|
<a class="button" href="{{ .Site.RSSLink }}">{{ with .Site.Params.subscribe }}{{ . }}{{ else }}Subscribe{{ end }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</nav>
|