mirror of
https://github.com/danbee/danbarber.me
synced 2025-03-04 08:59:10 +00:00
25 lines
590 B
HTML
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}}">« {{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}} »</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|