Add footer section for single post

This commit is contained in:
vimux 2018-05-21 21:18:52 +03:00
parent bedb4d42b4
commit d5d78035ff
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34

View file

@ -5,7 +5,9 @@
<div class="post__meta meta mb">{{ partial "post_meta.html" . }}</div> <div class="post__meta meta mb">{{ partial "post_meta.html" . }}</div>
<h1 class="post__title">{{ .Title }}</h1> <h1 class="post__title">{{ .Title }}</h1>
<div class="post__content">{{ .Content }}</div> <div class="post__content">{{ .Content }}</div>
{{ if .Params.tags }}{{ partial "post_tags.html" . }}{{ end }} <footer class="post__footer">
{{ if .Params.tags }}{{ partial "post_tags.html" . }}{{ end }}
</footer>
</article> </article>
</div> </div>
{{ partial "comments.html" . }} {{ partial "comments.html" . }}