diff options
author | Alex Ivanov <ai@contributor.pw> | 2019-11-10 01:27:11 +0300 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-11-16 20:34:46 +0100 |
commit | 9cd378a2d27ad4c9cb2e46d12022e68e23f96ea7 (patch) | |
tree | 7ed204e6b8781a9d92175de669b812efc5fe8733 /layouts/partials/docs/translation-switch.html | |
parent | 890cc000bbe3d5c6058de507e57dc8a4ab095f23 (diff) |
Multilang (#93)
* Add i18n langs trans example
* partials
* Update sample site
* cc of variables of config
* Clean PR
* revert master data
Diffstat (limited to 'layouts/partials/docs/translation-switch.html')
-rw-r--r-- | layouts/partials/docs/translation-switch.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/docs/translation-switch.html b/layouts/partials/docs/translation-switch.html new file mode 100644 index 0000000..4ad0f1a --- /dev/null +++ b/layouts/partials/docs/translation-switch.html @@ -0,0 +1,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 }}
\ No newline at end of file |