diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-12-20 23:13:09 -0500 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-12-20 23:13:09 -0500 |
commit | 6fa536f3268bf7bd4fd85df7fa78fbc4c67eaaa1 (patch) | |
tree | c4655d32bc67fddf0dae94660d23e6d3db749367 /_layouts/post.html | |
parent | 53109fa5e1404c0f5cd4328135f5b5fd7c88b555 (diff) |
Working on some major changes
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 2094b11..53a4999 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -6,27 +6,26 @@ layout: master <h1>{{ page.title }}</h1> - <div class="social-buttons"> - - <!-- Twitter --> - <a href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}&text={{ page.title }}" onclick="window.open(this.href, - '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-twitter"></span></a> - - <!-- Facebook --> - <a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="window.open(this.href, - '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-facebook"></span></a> - - <!-- Google Plus --> - <a href="https://plus.google.com/share?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="window.open(this.href, - '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-googleplus"></span></a> + <div class="date">{{ page.date | date: "%A, %-d %B %Y" }}</div> - <!-- Tumblr --> - <a href="https://tumblr.com/share?s=&v=3&t={{ page.title | cgi_escape }}&u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-tumblr"></span></a> + {{ content }} + {% if page.previous %} + <div class="grid_half"> + <div class="arrow">←</div> + <div><a class="post" href="{{ page.previous.url }}">{{ page.previous.title }}</a></div> </div> + {% endif %} - <div class="date">{{ page.date | date: "%A, %-d %B %Y" }}</div> + {% if page.next %} + <div class="grid_half right"> + <div class="arrow">→</div> + <div><a class="post" href="{{ page.next.url }}">{{ page.next.title }}</a></div> + </div> + {% endif %} - {{ content }} + {% for post in site.related_posts limit:3 %} + <a href="{{post.url}}">{{post.title}}</a> + {% endfor %} </section> |