godsip.club/themes/mini/layouts/partials/navigation.html

18 lines
677 B
HTML

<nav class="navigation">
{{ if not .IsHome }}
<a href="{{ "/" | relURL }}">{{ i18n "home" }}</a>
{{ end }}
<a href="{{ "/articles" | relURL }}">{{ i18n "articles" }}</a>
<a href="{{ "/tags" | relURL }}">{{ i18n "tags" }}</a>
<a href="{{ "/about" | relURL }}">{{ i18n "about" }}</a>
<a class="button" href="{{ "/subscribe" | relURL }}">{{ i18n "subscribe" }}</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 }}{{ i18n "subscribe" }}{{ end }}</a>
{{ end }} -->
</nav>