aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/nav.html
blob: 951e43348fab5eb9d4618a2547e821a78b3fa6d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<a href={{ i18n "home" | relURL }}>Home</a>
<a href={{ i18n "posts" }}>Blog</a>
<a href="mailto:c@lente.dev?subject={{ i18n "reply" }}'{{ .Page.Title | default .Site.Title }}'">Email</a>
<a href="/index.xml">RSS</a>

{{ $pageLang := .Page.Lang }}
{{ if .IsTranslated }}
  {{ range .Translations }}
    {{ if ne $pageLang .Lang }}
      <a href="{{ .Permalink }}">{{ i18n "other-lang" }}</a>
    {{ end }}
  {{ end }}
{{ else }}
  <a class="disabled" href="">{{ i18n "other-lang" }}</a>
{{ end }}