diff options
Diffstat (limited to 'themes/even/layouts/post')
-rw-r--r-- | themes/even/layouts/post/single.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/themes/even/layouts/post/single.html b/themes/even/layouts/post/single.html index 61fbf8c..9c9d257 100644 --- a/themes/even/layouts/post/single.html +++ b/themes/even/layouts/post/single.html @@ -30,6 +30,15 @@ <!-- Outdated Info Warning --> {{ partial "post/outdated-info-warning.html" . }} + {{ with .Params.tags -}} + <div class="post-tags"> + {{ range . }} + <a href="{{ "tags" | relLangURL }}/{{ . | urlize }}/">{{ . }}</a> + {{ end }} + </div> + {{- end }} + <hr/> + <!-- Content --> <div class="post-content"> {{ .Content }} @@ -42,13 +51,6 @@ {{ partial "post/reward.html" . }} <footer class="post-footer"> - {{ with .Params.tags -}} - <div class="post-tags"> - {{ range . }} - <a href="{{ "tags" | relLangURL }}/{{ . | urlize }}/">{{ . }}</a> - {{ end }} - </div> - {{- end }} <!-- Post Pagination --> <nav class="post-nav"> |