multi-language support through i18n
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{{ define "main" }}
|
||||
<!-- Page that displays after clicking on a post's tag -->
|
||||
<h1>Tagged "{{ .Data.Term }}"</h1>
|
||||
<h1>{{ i18n "tagged" }} "{{ .Data.Term }}"</h1>
|
||||
{{range .Pages}}
|
||||
|
||||
<!-- Display the posts with the tag -->
|
||||
@@ -13,7 +13,7 @@
|
||||
<div>
|
||||
<p>{{ .Summary }}</p>
|
||||
{{ if (and (.Site.Params.showReadMore) (.Truncated)) }}
|
||||
<p><a href="{{ .RelPermalink }}">Read more...</a></p>
|
||||
<p><a href="{{ .RelPermalink }}">{{ i18n "read_more" }}</a></p>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
@@ -22,4 +22,4 @@
|
||||
</article>
|
||||
{{ end }}
|
||||
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
Reference in New Issue
Block a user