aboutsummaryrefslogtreecommitdiffstats
path: root/bricks/templates/category.html
blob: e445eab36d07052d39ef778e4e3e1ffe974cdff2 (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
41
42
43
44
45
46
{% extends "base.html" %}
{% block pageheader %}
<div class="hp-header" style="height:33%;">
    <div class="page-header">
        <div class="content-header">
            <div id="title-block">
                <h1 style="font-size:3em; color:white;">Articles in the {{ category }} category </h1>
            </div>
        </div>
    </div>
</div>
{% endblock %}


{% block content %}

{% block content_title %}
{% endblock %}



{% set cnt = 0 %}


<blocks cols="2">
{% for article in articles_page.object_list %}
        <div class="sec-article">
            <div class="read-more">{{ article.locale_date}}</div>

            <h3><a href="{{ SITEURL }}/{{ article.url }}" rel=Bookmark title="Permalink to {{ article.title | striptags }}">{{ article.title }}</a></h3>
            <p>
            {{ article.summary }}            
            </p>
        </div>

{% endfor %}
</blocks>
{% if articles_page.has_other_pages() %}
<div class="pagination-block">
    {% include 'pagination.html' %}
</div>
{% endif %}

{% endblock content %}
<!-- END CONTENT -->