1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00
danbarber.me/_layouts/post.html
2018-11-10 16:17:37 -05:00

25 lines
590 B
HTML

---
layout: default
single: true
---
{% include header.html %}
<div class="blog-content">
<article class="blog-post">
{% include article.html %}
</article>
<div class="container pagination">
{% if page.previous.url %}
<a class="prev" href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">&laquo; {{page.previous.title}}</a>
{% endif %}
{% if page.next.url %}
<a class="next" href="{{page.next.url}}" title="next Post: {{page.next.title}}">{{page.next.title}} &raquo;</a>
{% endif %}
</div>
</div>
{% include footer.html %}