Revamp authors taxonomy

Fixes #43
This commit is contained in:
2021-11-22 01:36:29 -06:00
parent b745f87462
commit 8067173f0c
9 changed files with 76 additions and 18 deletions

View File

@ -1,9 +1,17 @@
{{ with .Params.authors }}
<div class="post-metadata">
{{/* Calculate the total word count */}}
{{ $total_words := 0 }}
{{ range .Data.Pages }}
{{ $total_words = add $total_words .WordCount }}
{{ end }}
<meta name="author" content="{{ delimit . ", " }}">
<span class="post-meta-item">
{{ partial "icon.html" "newspaper" }}
{{ i18n "post_count" (len .Data.Pages) }}
</span>
{{ range . }}
<meta property="article:author" content="{{ . }}">
{{ end }}
{{ end }}
<span class="post-meta-item">
{{ partial "icon.html" "align-left" }}
{{ i18n "wordcount" $total_words }}
</span>
</div>

View File

@ -1,5 +0,0 @@
{{ with .Description }}
<div class="term-description">
<p>{{ . | markdownify }}</p>
</div>
{{ end }}