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.
18 lines
801 B
HTML
18 lines
801 B
HTML
<nav class="main-nav">
|
|
{{ $url := replace .Permalink .Site.BaseURL "" }}
|
|
{{ if not .IsHome }}
|
|
<a href='{{ .Site.BaseURL }}'> <span class="arrow">←</span>{{ with .Site.Params.home }}{{ . }}{{ else }}Home{{ end }}</a>
|
|
{{ end }}
|
|
<a href='{{ .Site.BaseURL }}posts'>{{ with .Site.Params.archive }}{{ . }}{{ else }}Archive{{ end }}</a>
|
|
<a href='{{ .Site.BaseURL }}tags'>{{ with .Site.Params.tags }}{{ . }}{{ else }}Tags{{ end }}</a>
|
|
<a href='{{ .Site.BaseURL }}about'>{{ with .Site.Params.about }}{{ . }}{{ else }}About{{ end }}</a>
|
|
|
|
{{ range $key, $val := .Site.Params.Links }}
|
|
<a href="{{ $val }}">{{ $key }}</a>
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.enableRSS }}
|
|
<a class="cta" href="{{ .Site.RSSLink }}">{{ with .Site.Params.subscribe }}{{ . }}{{ else }}Subscribe{{ end }}</a>
|
|
{{ end }}
|
|
</nav>
|