diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/master.html | 10 | ||||
-rw-r--r-- | _layouts/post.html | 5 |
2 files changed, 7 insertions, 8 deletions
diff --git a/_layouts/master.html b/_layouts/master.html index 6909f74..e5d0397 100644 --- a/_layouts/master.html +++ b/_layouts/master.html @@ -72,6 +72,10 @@ </head> <body> <header class="top-header print-hide"> + <div class="social-icons" style="float:right;"> + <a href="https://github.com/benburwell"><i class="fa fa-2x fa-github"></i></a> + <a href="https://twitter.com/bburwell"><i class="fa fa-2x fa-twitter"></i></a> + </div> <nav> <a class="" href="/">benburwell.com</a> <a class="posts" href="/posts/">/posts</a> @@ -82,11 +86,7 @@ {{ content }} </main> <footer class="print-hide"> - <div class="social-icons"> - <a href="https://github.com/benburwell"><i class="fa fa-2x fa-github"></i></a> - <a href="https://twitter.com/bburwell"><i class="fa fa-2x fa-twitter"></i></a> - </div> - <div><a href="/license/">© 2015</a> • <a href="/privacy/">Privacy</a></div> + <div class="light-gray"><a href="/license/">© 2015</a> • <a href="/privacy/">Privacy</a></div> </footer> </body> </html> diff --git a/_layouts/post.html b/_layouts/post.html index 1ff0a3e..9cf26f0 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -17,19 +17,18 @@ layout: master <div class="split"> {% if page.previous %} <div class="left align-left sans"> - <a href="{{ page.previous.url }}"><i class="fa fa-chevron-left"></i> Previous Post</a> + <a href="{{ page.previous.url }}"><i class="fa fa-chevron-left"></i> Older Post</a> </div> {% endif %} {% if page.next %} <div class="right align-right sans"> - <a href="{{ page.next.url }}">Next Post <i class="fa fa-chevron-right"></i></a> + <a href="{{ page.next.url }}">Newer Post <i class="fa fa-chevron-right"></i></a> </div> {% endif %} </div> <div class="center"> - <!-- <p>you may also enjoy…</p> --> {% for post in site.related_posts limit:3 %} <p class="sans"><a href="{{ post.url }}">{{ post.title }}</a></p> {% endfor %} |