mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-06-18 20:13:31 +08:00
23 lines
632 B
HTML
23 lines
632 B
HTML
{{- $context := .Context -}}
|
|
|
|
{{ if ne (len $context.Translations) "0" }}
|
|
<section class="widget i18n">
|
|
<div class="widget-icon">
|
|
{{ partial "helper/icon" "i18n" }}
|
|
</div>
|
|
<h2 class="widget-title section-title">{{ T "widget.i18n-nav.title" }}</h2>
|
|
|
|
<div class="i18n--list">
|
|
{{ range $context.Translations }}
|
|
<div class="i18n--node">
|
|
<a href="{{ .RelPermalink }}">
|
|
<span class="year">{{ .Language.LanguageName }}</span>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
{{ end }}
|