diff options
| author | Sanjay T. Sharma <sanjay.t.sharma@gmail.com> | 2017-09-24 17:56:55 +0100 | 
|---|---|---|
| committer | olOwOlo <26087907+olOwOlo@users.noreply.github.com> | 2017-09-25 00:56:55 +0800 | 
| commit | ab7cdc5d3c20f03b1e22f4c201ba29af06d139cb (patch) | |
| tree | 72c5097b037064188bfe5deed66bf58c490efa75 /layouts/_default | |
| parent | 271f73a87fe152978daea55e6cfe2a3b6f3530fb (diff) | |
feat: provide the facility to customize date format (#10)
Diffstat (limited to 'layouts/_default')
| -rw-r--r-- | layouts/_default/taxonomy.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html index b2e4643..ec8a266 100644 --- a/layouts/_default/taxonomy.html +++ b/layouts/_default/taxonomy.html @@ -18,7 +18,7 @@    {{ range $paginator.Pages }}      <div class="archive-post">        <span class="archive-post-time"> -        {{ .Date.Format "2006-01-02" }} +        {{ .Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }}        </span>        <span class="archive-post-title">          <a href="{{ .URL }}" class="archive-post-link"> | 
