aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/docs/translation-switch.html
blob: 4ad0f1a149ba7cc12446e03971ecf0bac901273d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ if .IsTranslated }}
<ul>
    <li class="book-section-flat">
        <span>{{ i18n "translations" }}</span>
        <ul>
        {{ range .Translations }}
            <li>
                <a href="{{ .Permalink }}">{{ .Lang }}: {{ .Title }}{{ if .IsPage }} ({{ i18n "wordCount" . }}){{ end }}</a>
            </li>
        {{ end }}
        </ul>
    </li>
</ul>
{{ end }}