diff options
author | Ben Burwell <ben@benburwell.com> | 2015-05-11 16:43:35 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-05-11 16:43:35 -0400 |
commit | dbf0fca03161fab7d5d9bdc142abeb2c6af75161 (patch) | |
tree | d64bcc5b5a52386d986556a760f7ccb6e34afbb3 | |
parent | de8f745817684a3cccbdaa0c17286792f07cbd24 (diff) |
move social icons to top right
-rw-r--r-- | _layouts/master.html | 10 |
1 files changed, 5 insertions, 5 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> |