summaryrefslogtreecommitdiff
path: root/templates/taxonomy_single.html
blob: dec55ccd3a170af310bae0e9933f11bf6bbad671 (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
{% extends "base.html" %}

{% import "macros.html" as macros %}

{% block content %}
{% if paginator %}
{% set pages = paginator.pages %}
{% else %}
{% set pages = term.pages %}
{% endif %}
<section class="posts">
    <div class="post-title term-name term-name-heading">
        #{{ term.name }}
    </div>
    {% for post in pages %}
    <article class="post">
        <div class="post-title"><a href="{{ post.permalink }}" class="post-title-link">{{ post.title }}</a></div>
        <div class="post-content">
            {{ post.summary | safe }}
            <a href="{{ post.permalink }}" class="More">More</a>
        </div>
        {{ macros::post_meta(post=post, chinese_date=config.extra.seje_chinese_date, expand=false) }}
    </article>
    {% endfor %}
    {# {{ paginator.next }} #}
</section>
{% if paginator %}
{% include "paginator.html" %}
{% endif %}
{% endblock %}