blob: 1242955428e8ada6b7553ba8bf12c9946d519c54 (
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
|
{% extends "base.html" %}
{% import "macros.html" as macros %}
{% 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>
{{ macros::post_meta(post=post, chinese_date=config.extra.seje_chinese_date, expand=false) }}
</article>
{% endfor %}
{# {{ paginator.next }} #}
</section>
{% include "paginator.html" %}
{% endblock %}
|