Makes the templates simpler.
See #2309
To create a list of links to translated content, use a template similar to this:
```
-{{ $translations := .Translations }}
-{{ if gt (len $translations) 0 }}
+{{ if .IsTranslated }}
<h4>{{ i18n "translations" }}</h4>
<ul>
- {{ range $translations }}
+ {{ range .Translations }}
<li>
- <a href="{{ .Permalink }}">{{ .Lang }}: {{ .Title }}</a>
+ <a href="{{ .Permalink }}">{{ .Lang }}: {{ .Title }}{{ if .IsPage }} ({{ i18n "wordCount" . }}){{ end }}</a>
</li>
{{ end}}
</ul>
translations = append(translations, t)
}
}
-
return translations
}
+// IsTranslated returns whether this node is translated to
+// other language(s).
+func (n *Node) IsTranslated() bool {
+ n.initTranslations()
+ return len(n.translations) > 1
+}
+
func (n *Node) initTranslations() {
n.translationsInit.Do(func() {
if n.translations != nil {
return p.translations
}
+// IsTranslated returns whether this content file is translated to
+// other language(s).
+func (p *Page) IsTranslated() bool {
+ return len(p.translations) > 1
+}
+
// Translations returns the translations excluding the current Page.
func (p *Page) Translations() Pages {
translations := make(Pages, 0)