aboutsummaryrefslogtreecommitdiffstats
path: root/martyalchin/templates/article.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/article.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/article.html')
-rw-r--r--martyalchin/templates/article.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/martyalchin/templates/article.html b/martyalchin/templates/article.html
new file mode 100644
index 0000000..f5c6591
--- /dev/null
+++ b/martyalchin/templates/article.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block title %}{{ article.title }}{%endblock%}
+{% block content %}
+ <h1>{{ article.title }}</h1>
+ <div class="info">
+ {% if article.author %}
+ By <a class="url fn" href="#">{{ article.author }}</a>
+ {% endif %}
+ on <a>{{ article.date.locale_date }}</a>
+ about <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>
+ </div>
+ {{ article.content }}
+{% endblock %}