Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-05-18 11:10:24 +0300
committerGitHub <noreply@github.com>2020-05-18 11:10:24 +0300
commit9c1244490f0f5596db9b6df933041af9c727dc5b (patch)
tree57c4af8cb68299ba371738b7946a22fb15d97d33 /layouts/_default
parent36f59a72ee4c186cc525b67da6813498f43a711c (diff)
i18n: update i18n string format (#371)
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/section.html6
-rw-r--r--layouts/_default/summary.html30
2 files changed, 17 insertions, 19 deletions
diff --git a/layouts/_default/section.html b/layouts/_default/section.html
index a743ca9..5694317 100644
--- a/layouts/_default/section.html
+++ b/layouts/_default/section.html
@@ -1,12 +1,12 @@
{{- define "title" }}
- {{- .Params.Title | default (T .Section) | default .Section | string | printf (T "allSome" | string) }} - {{ .Site.Title -}}
+ {{- .Params.Title | default (T .Section) | default .Section | dict "Some" | T "allSome" }} - {{ .Site.Title -}}
{{- end -}}
{{- define "content" -}}
<div class="page archive">
{{- /* Title */ -}}
<h2 class="single-title animated pulse faster">
- {{- .Params.Title | default (T .Section) | default .Section | string | printf (T "allSome" | string) -}}
+ {{- .Params.Title | default (T .Section) | default .Section | dict "Some" | T "allSome" -}}
</h2>
{{- /* Paginate */ -}}
@@ -25,7 +25,7 @@
{{- .Title -}}
</a>
<span class="archive-item-date">
- {{- .Date.Format ($.Site.Params.section.dateFormat | default "01-02") -}}
+ {{- $.Site.Params.section.dateFormat | default "01-02" | .Date.Format -}}
</span>
</article>
{{- end -}}
diff --git a/layouts/_default/summary.html b/layouts/_default/summary.html
index 7f4c12d..fa990e1 100644
--- a/layouts/_default/summary.html
+++ b/layouts/_default/summary.html
@@ -23,22 +23,20 @@
{{- partial "plugin/link.html" $options -}}
</span>
- {{- $publish_date := .PublishDate.Format (.Site.Params.dateFormat | default "2006-01-02") -}}
- &nbsp;<span class="post-publish">
- {{ T "publish" }}&nbsp;<time datetime={{ $publish_date }}>{{ $publish_date }}</time>
- </span>
+ {{- with .Site.Params.dateFormat | default "2006-01-02" | .PublishDate.Format -}}
+ &nbsp;<span class="post-publish">
+ {{- printf `<time datetime="%v">%v</time>` . . | dict "Date" | T "publishedOnDate" | safeHTML -}}
+ </span>
+ {{- end -}}
- {{- with .Params.categories -}}
- &nbsp;
- <span class="post-category">
- {{- T "included" -}}
- {{- range $index, $value := . -}}
- {{- if gt $index 0 }}&nbsp;{{ end -}}
- {{- $category := $value | anchorize | printf "/categories/%s" | $.Site.GetPage -}}
- <a href="{{ $category.RelPermalink }}">
- <i class="far fa-folder fa-fw"></i>{{ $category.Title }}
- </a>
- {{- end -}}
+ {{- $categories := slice -}}
+ {{- range .Params.categories -}}
+ {{- $category := . | anchorize | printf "/categories/%v" | $.Site.GetPage -}}
+ {{- $categories = $categories | append (printf `<a href="%v"><i class="far fa-folder fa-fw"></i>%v</a>` $category.RelPermalink $category.Title) -}}
+ {{- end -}}
+ {{- with delimit $categories "&nbsp;" -}}
+ &nbsp;<span class="post-category">
+ {{- dict "Categories" . | T "includedInCategories" | safeHTML -}}
</span>
{{- end -}}
</div>
@@ -60,7 +58,7 @@
<i class="fas fa-tags fa-fw"></i>&nbsp;
{{- range $index, $value := . -}}
{{- if gt $index 0 }},&nbsp;{{ end -}}
- {{- $tag := $value | anchorize | printf "/tags/%s" | $.Site.GetPage -}}
+ {{- $tag := $value | anchorize | printf "/tags/%v" | $.Site.GetPage -}}
<a href="{{ $tag.RelPermalink }}">{{ $tag.Title }}</a>
{{- end -}}
</div>