blob: 298c2324a03b3c77336087d1cacad80790af764b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "base.html" %}
{% block content %}
<section class="posts">
{% for post in paginator.pages %}
<article class="post">
<div class="post-title"><a href="{{ post.permalink }}" class="post-title-link">{{ post.title }}</a></div>
<div class="post-content">
{% if config.extra.seje_show_summary_only %}
{{ post.summary | safe }}
<a href="{{ post.permalink }}" class="More">More</a>
{% else %}
{{ post.content | safe }}
{% endif %}
</div>
{{ <post_meta post={post} chinese_date={config.extra.seje_chinese_date} expand={false} /> }}
</article>
{% endfor %}
{# {{ paginator.next }} #}
</section>
{% include "paginator.html" %}
{% endblock %}
|