1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00

Add micropost layout

This commit is contained in:
Daniel Barber 2019-07-07 13:36:39 -04:00
parent 34d281cb44
commit cbca0f742f
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

24
_layouts/micropost.html Normal file
View File

@ -0,0 +1,24 @@
---
layout: default
single: true
---
{% include header.html %}
<div class="blog-content">
<article class="article micro-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 %}