summaryrefslogtreecommitdiff
path: root/project/templates/tags/mathematics.xhtml
blob: 444100458ba0592e8bd30118833aa6cb5e262ca9 (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

{%- extends "base_plain.xhtml" -%}



{%- block title -%}Mathematics Tag{%- endblock -%}



{%- block style %}
    <link href="/css/index.css" rel="stylesheet" />
{% endblock -%}



{%- block content %}
<h4>Tag: Mathematics</h4>

<ul class="index">
    {%- for item in articles -%}
        {%- if 'mathematics' in item.taglist -%}
        {%- if item.updated -%}{%- set postclass = "update" -%}{%- else -%}{%- set postclass = "post" -%}{%- endif -%}
        {%- if item.updated -%}{%- set postverb = "Updated" -%}{%- else -%}{%- set postverb = "Posted" -%}{%- endif %}
    <li><a href="{{ item.anchor }}">{{ item.title }}</a><br />
        <span class="taglist">{{ item.taglist | join(", ") }}</span><br />
        <span class="{{ postclass }}">({{ postverb }} {{ item.postdate }})</span></li>
        {%- endif -%}
    {%- endfor %}
</ul>
{% endblock -%}