mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-29 03:53:30 +08:00
`Failed to get translated string for language "ru" and ID "...": message "article.back" has no plural form "many"` Add i18n for `Back` button (vertical view)
22 lines
672 B
HTML
22 lines
672 B
HTML
{{ define "container-class" }}article-page with-toolbar{{ end }}
|
|
{{ define "main" }}
|
|
<div id="article-toolbar">
|
|
<a href="{{ .Site.BaseURL }}" class="back-home">
|
|
{{ (resources.Get "icons/back.svg").Content | safeHTML }}
|
|
<span>{{ T "article.back" }}</span>
|
|
</a>
|
|
</div>
|
|
|
|
{{ partial "article/article.html" . }}
|
|
|
|
{{ partial "article/components/related-contents" . }}
|
|
|
|
{{ if or (not (isset .Params "comments")) (eq .Params.comments "true")}}
|
|
{{ partial "comments/include" . }}
|
|
{{ end }}
|
|
|
|
{{ partialCached "footer/footer" . }}
|
|
|
|
{{- partialCached "article/components/photoswipe.html" . -}}
|
|
{{ end }}
|