diff options
Diffstat (limited to 'themes/flamingo/layouts/partials/footer.html')
-rw-r--r-- | themes/flamingo/layouts/partials/footer.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/themes/flamingo/layouts/partials/footer.html b/themes/flamingo/layouts/partials/footer.html new file mode 100644 index 0000000..4476494 --- /dev/null +++ b/themes/flamingo/layouts/partials/footer.html @@ -0,0 +1,18 @@ +<footer> + <div class="bottom-nav"> + <nav> + <ul> + <li><a href="/about/">about</a></li> + <li><a href="/logs/">logs</a></li> + <li><a href="/privacy/">privacy</a></li> + </ul> + </nav> + </div> + + {{ if eq .IsPage true }} + {{ if (or (eq .Section "posts") (eq .Section "logs")) }} + {{ partial "comments.html" }} + {{ end }} + {{ end }} + <!-- <p>© {{ now.Year }} <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></p> --> +</footer> |