mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
23 lines
561 B
HTML
23 lines
561 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<article class="post">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
<time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}</time>
|
|
{{ content }}
|
|
<hr>
|
|
|
|
<div class="PageNavigation">
|
|
{% if page.previous.url %}
|
|
<a class="prev" href="{{page.previous.url}}">« {{page.previous.title}}</a>
|
|
{% endif %}
|
|
{% if page.next.url %}
|
|
<a class="next" href="{{page.next.url}}">{{page.next.title}} »</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<hr>
|
|
{% include disqus.html %}
|
|
</article>
|