blob: 082588dc0ee82b2ce5475c65fdeb4c9a47a2b79d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<footer>
{{ if or (.Params.author) (gt .Params.lastmod 0) }}
<div class="article-meta">
{{ with .Params.author }}Author <span class="author">{{ . }}</span><br/>{{ end }}
{{ if (gt .Params.lastmod 0) }}Updated <span class="date">{{ .Lastmod.Format "2006/01/02" }}</span><br/>{{ end }}
</div>
{{ end }}
{{ partial "foot_custom.html" . }}
{{ with .Site.Params.footer }}
<hr/>
{{ . | markdownify }}
{{ end }}
</footer>
</body>
</html>
|