diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/blog.html | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/_layouts/blog.html b/_layouts/blog.html index 8d11c64..e245dc1 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -9,19 +9,28 @@ layout: master </main> <footer> <p> - <a href="/">about</a> - ~ - <a href="/posts/">posts</a> - ~ - <a href="/projects/">projects</a> - ~ - <a href="https://github.com/benburwell">github</a> + <span class="footer-link"> + <a href="/">about</a> + </span> + <span class="footer-link"> + <a href="/posts/">posts</a> + </span> + <span class="footer-link"> + <a href="/projects/">projects</a> + </span> + <span class="footer-link"> + <a href="https://github.com/benburwell">github</a> + </span> </p> <p> - <a href="/license/">© 2016</a> - ~ - <a href="/privacy/">privacy</a> - ~ - <a href="/feed.xml">rss</a> + <span class="footer-link"> + <a href="/license/">© {{ site.time | date: '%Y' }}</a> + </span> + <span class="footer-link"> + <a href="/privacy/">privacy</a> + </span> + <span class="footer-link"> + <a href="/feed.xml">rss</a> + </span> </p> </footer> |