瀏覽代碼

Allow internationalization for 'Posts' (#337)

* Allow internationalization for 'Posts'

* Apply internationalization to page title as well.

- I18n files should have an entry for the original title in lowercase.
Latiif alSharif 5 年之前
父節點
當前提交
e57d44345c
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      layouts/posts/list.html

+ 2 - 3
layouts/posts/list.html

@@ -1,10 +1,9 @@
 {{ define "title" }}
-  {{ .Title }} · {{ .Site.Title }}
+  {{ i18n (lower .Title) | default .Title }} · {{ .Site.Title }}
 {{ end }}
 {{ define "content" }}
   <section class="container list">
-    <h1 class="title">{{ .Title }}</h1>
-
+    <h1 class="title"> {{ i18n (lower .Title) | default .Title }} </h1>
     <ul>
       {{- range .Paginator.Pages -}}
         {{- .Render "li" -}}