feat(): add support for translations

This commit is contained in:
kendo5731 2016-02-06 15:37:20 +01:00
parent b9047b4cf3
commit b250023b85
4 changed files with 12 additions and 4 deletions

View File

@ -0,0 +1,4 @@
mostrecentposts: Most recent posts
tags: Tags
categories: Categories
datepublished: Published

View File

@ -0,0 +1,4 @@
mostrecentposts: Les derniers articles
tags: Tags
categories: Catégories
datepublished: Publié le

View File

@ -1,6 +1,6 @@
{{ partial "top.html" . }}
<h1>{{ .Title }}</h1>
<h4>Publié le {{ dateFormat "01-02-2006 15:04:05" .Date }}</h4>
<h4>{{ ( index $.Site.Data.translations $.Site.Params.locale ).datepublished }} {{ dateFormat "01-02-2006 15:04:05" .Date }}</h4>
{{ partial "share.html" . }}
<article>
{{ .Content }}

View File

@ -1,6 +1,6 @@
<nav class="col-md-3">
<div id="last-posts" class="open">
<h3 data-open="last-posts">{{ .Site.Title }} - Les derniers articles</h3>
<h3 data-open="last-posts">{{ .Site.Title }} - {{ ( index $.Site.Data.translations $.Site.Params.locale ).mostrecentposts }}</h3>
<ul>
{{ range last 10 .Site.Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
@ -9,7 +9,7 @@
</div>
<div id="tags" class="open">
<h3 data-open="tags">Tags</h3>
<h3 data-open="tags">{{ ( index $.Site.Data.translations $.Site.Params.locale ).tags }}</h3>
<ul class="tags">
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
<li><a href="/tags/{{ $name | urlize }}">{{ $name }}</a></li>
@ -18,7 +18,7 @@
</div>
<div id="categories" class="open">
<h3 data-open="categories">Categories</h3>
<h3 data-open="categories">{{ ( index $.Site.Data.translations $.Site.Params.locale ).categories }}</h3>
<ul class="categories">
{{ range $name, $taxonomy := .Site.Taxonomies.categories }}
<li><a href="/categories/{{ $name | urlize }}">{{ $name }}</a></li>