tale/_layouts/post.html

39 lines
883 B
HTML
Raw Normal View History

2017-03-11 05:09:18 +00:00
---
layout: default
---
2017-03-12 10:44:45 +00:00
2017-03-21 09:49:46 +00:00
<div class="post">
<div class="post-info">
<span>Written by</span>
2017-10-09 23:26:14 +00:00
{% if page.author %}
{{ page.author }}
{% else %}
{{ site.author.name }}
{% endif %}
2017-03-27 12:46:06 +00:00
{% if page.date %}
<br>
<span>on&nbsp;</span><time datetime="{{ page.date }}">{{ page.date | date: "%B %d, %Y" }}</time>
{% endif %}
2017-03-21 09:49:46 +00:00
</div>
2017-03-12 10:44:45 +00:00
2017-03-21 09:49:46 +00:00
<h1 class="post-title">{{ page.title }}</h1>
<div class="post-line"></div>
{{ content }}
2017-03-12 10:44:45 +00:00
</div>
{% if page.comments %}
{% include disqus_comments.html %}
{% endif %}
<div class="pagination">
{% if page.next.url %}
2017-10-07 18:50:44 +00:00
<a href="{{ page.next.url | prepend: site.baseurl }}" class="left arrow">&#8592;</a>
{% endif %}
{% if page.previous.url %}
2017-10-07 18:50:44 +00:00
<a href="{{ page.previous.url | prepend: site.baseurl }}" class="right arrow">&#8594;</a>
{% endif %}
<a href="#" class="top">Top</a>
</div>