1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00
danbarber.me/_layouts/photopost.html
Daniel Barber c00208287c Add Instagram posts
TODO:
- Add multi-photo posts
- Add video posts
2019-07-10 22:42:49 -04:00

25 lines
599 B
HTML

---
layout: default
single: true
---
{% include header.html %}
<div class="blog-content">
<article class="article photo-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 %}