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">
|
2020-11-23 20:40:33 +00:00
|
|
|
{% if page.author or page.date %}
|
|
|
|
<span>Written</span>
|
|
|
|
{% if page.author %}
|
|
|
|
<span>by</span>
|
2017-10-09 23:26:14 +00:00
|
|
|
{% if page.author %}
|
|
|
|
{{ page.author }}
|
|
|
|
{% else %}
|
|
|
|
{{ site.author.name }}
|
|
|
|
{% endif %}
|
2020-11-23 20:40:33 +00:00
|
|
|
<br>
|
|
|
|
{% endif %}
|
2017-03-27 12:46:06 +00:00
|
|
|
|
|
|
|
{% if page.date %}
|
2020-11-23 20:40:33 +00:00
|
|
|
<span>on </span><time datetime="{{ page.date }}">{{ page.date | date: "%Y-%m-%d" }}</time>
|
|
|
|
{% endif %}
|
2017-03-27 12:46:06 +00:00
|
|
|
{% 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>
|
2021-02-20 20:45:31 +00:00
|
|
|
|
|
|
|
<div class="tags-clouds">
|
|
|
|
{% assign pt = page.tags | sort -%}
|
|
|
|
{% for tag in pt -%}
|
|
|
|
<a href="/tags/#{{ tag }}">{{ tag }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div><br />
|
|
|
|
|
2017-03-21 09:49:46 +00:00
|
|
|
<div class="post-line"></div>
|
|
|
|
|
|
|
|
{{ content }}
|
2017-03-12 10:44:45 +00:00
|
|
|
</div>
|
2019-10-24 06:56:51 +00:00
|
|
|
|
2019-10-22 07:19:29 +00:00
|
|
|
{% if page.comments %}
|
2019-10-24 06:56:51 +00:00
|
|
|
{% include disqus_comments.html %}
|
2019-10-22 07:19:29 +00:00
|
|
|
{% endif %}
|
2019-10-24 06:56:51 +00:00
|
|
|
|
2017-03-15 03:58:11 +00:00
|
|
|
<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">←</a>
|
2017-03-15 03:58:11 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if page.previous.url %}
|
2017-10-07 18:50:44 +00:00
|
|
|
<a href="{{ page.previous.url | prepend: site.baseurl }}" class="right arrow">→</a>
|
2017-03-15 03:58:11 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2020-11-23 20:40:33 +00:00
|
|
|
<a href="#" class="top">⇈</a>
|
|
|
|
</div>
|