summaryrefslogtreecommitdiff
path: root/_site_build/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_site_build/_layouts/post.html')
-rw-r--r--_site_build/_layouts/post.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/_site_build/_layouts/post.html b/_site_build/_layouts/post.html
new file mode 100644
index 0000000..3d460eb
--- /dev/null
+++ b/_site_build/_layouts/post.html
@@ -0,0 +1,22 @@
+---
+layout: default
+---
+<article>
+ <header>
+ <h1>{{ page.title }}</h1>
+ <time datetime="{{ page.date | date: '%Y-%m-%d' }}" pubdate>{{ page.date | date: '%A, %d %B, %Y' }}</time>
+ </header>
+ {{ content }}
+ <footer>
+ <nav>
+ <ul>
+ {% if page.previous.url %}
+ <li class="prev-article"><a href="{{ page.previous.url }}" target="_self" rel="prev" title="{{ page.previous.title }}">&laquo; {{ page.previous.title }}</a></li>
+ {% endif %}
+ {% if page.next.url %}
+ <li class="next-article"><a href="{{ page.next.url }}" target="_self" rel="next" title="{{ page.next.title }}">{{ page.next.title }} &raquo;</a></li>
+ {% endif %}
+ </ul>
+ </nav>
+ </footer>
+</article>