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:
parent
34d281cb44
commit
cbca0f742f
24
_layouts/micropost.html
Normal file
24
_layouts/micropost.html
Normal 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}}">« {{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 %}
|
||||
Loading…
Reference in New Issue
Block a user