aboutsummaryrefslogtreecommitdiffstats
path: root/bricks/templates/category.html
diff options
context:
space:
mode:
authormaxlambertini <m.lambertini@gmail.com>2015-10-26 15:24:34 +0100
committerJustin Mayer <entroP@gmail.com>2015-10-27 13:10:27 -0700
commit9c87d63f70970aee390ad0c8b2623b27b4d94f15 (patch)
tree2c43a8817de6c7765b3fdb61d437cb29abc17791 /bricks/templates/category.html
parent10f51d8bb763fc6edd2ecd32c695d3529b01c93e (diff)
downloadpelican-themes-9c87d63f70970aee390ad0c8b2623b27b4d94f15.tar.gz
Add Bricks theme
Diffstat (limited to 'bricks/templates/category.html')
-rw-r--r--bricks/templates/category.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/bricks/templates/category.html b/bricks/templates/category.html
new file mode 100644
index 0000000..e445eab
--- /dev/null
+++ b/bricks/templates/category.html
@@ -0,0 +1,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 -->
+