aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html
diff options
context:
space:
mode:
Diffstat (limited to 'generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html')
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html b/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html
index f198385..1925575 100644
--- a/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html
+++ b/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html
@@ -5,7 +5,7 @@
<div class="column is-7">
{{ $title := .Title }}
<article class="content">
- <h1 class="article__list smallcaps title">{{ .Title | title }}</h1>
+ <h1 class="article__list smallcaps title">{{ .Title | markdownify }}</h1>
{{ range $taxonomy := .Site.Taxonomies }}
{{ $title := .Title }}
{{ range $tag, $article := $taxonomy }}
@@ -15,7 +15,10 @@
{{ range $article.Pages }}
<li>
<a title="{{ .Title }}" class="is-block" href="{{ .RelPermalink }}">
- <span class="article__list__date monospace has-text-grey-dark">{{ .Date.Format "02 Jan 2006" }}</span>{{ .Title }}
+ <span class="article__list__date monospace has-text-grey-dark">
+ {{- .Date.Format "02 Jan 2006" -}}
+ </span>
+ {{- .Title | markdownify -}}
</a>
</li>
{{ end }}