blob: a3ffc75add6685b1042a2759855afdeed741e246 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{% extends "base.html" %}
{% block content %}
<article class="post">
<div class="post-title">
<h1 class="title">{{ section.title }}</h1>
</div>
<div class="post-content">
{{ section.content | safe }}
</div>
<div class="post-meta">
<span class="post-time">
{% if config.extra.seje_chinese_date %}
{{ <format_chinese_date year={section.extra.year} month={section.extra.month} day={section.extra.day} /> }}
{% else %}
{{ section.extra.date|date(format="%Y/%m/%d") }}
{% endif %}
</span>
</div>
</article>
<div class="prev_next">
<nav id="prev_next">
<div class="prev">
{% if section.later %}
<p>Newer</p><a href="{{ section.later.permalink }}"><div class="article-nav-title">{{ section.later.title }}</div></a>
{% endif %}
</div>
<div class="next">
{% if section.earlier %}
<p>Older</p><a href="{{ section.earlier.permalink }}"><div class="article-nav-title">{{ section.earlier.title }}</div></a>
{% endif %}
</div>
</nav>
</div>
<div class="post-comment">
{# Discussion #}
</div>
{% endblock %}
|