aboutsummaryrefslogtreecommitdiffstats
path: root/martyalchin/templates/category.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-02-01 21:51:19 +0000
committerAlexis Metaireau <alexis@notmyidea.org>2011-02-01 21:51:19 +0000
commit869840185624149e701685ef8021a6d3d46fff3b (patch)
tree284ffcb1fc8fb1daf275c795eab5075a48b69c25 /martyalchin/templates/category.html
parent50991bc1b6a994223f2a715a42faad34050c507c (diff)
downloadpelican-themes-869840185624149e701685ef8021a6d3d46fff3b.zip
pelican-themes-869840185624149e701685ef8021a6d3d46fff3b.tar.gz
pelican-themes-869840185624149e701685ef8021a6d3d46fff3b.tar.bz2
Move the amrtyalchin theme from pelican to themes.
Diffstat (limited to 'martyalchin/templates/category.html')
-rw-r--r--martyalchin/templates/category.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/martyalchin/templates/category.html b/martyalchin/templates/category.html
new file mode 100644
index 0000000..7c72d92
--- /dev/null
+++ b/martyalchin/templates/category.html
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block title %}{{ category }}{%endblock%}
+<h1>{{ category }}</h1>
+<div class="info"></div>
+{% for article in articles %}
+<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
+<p class="published">{{ article.locale_date }}</p>
+{{ article.summary }}
+{% endfor %}