diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 21:51:19 +0000 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 21:51:19 +0000 |
commit | 869840185624149e701685ef8021a6d3d46fff3b (patch) | |
tree | 284ffcb1fc8fb1daf275c795eab5075a48b69c25 /martyalchin/templates/article.html | |
parent | 50991bc1b6a994223f2a715a42faad34050c507c (diff) | |
download | pelican-themes-869840185624149e701685ef8021a6d3d46fff3b.tar.gz |
Move the amrtyalchin theme from pelican to themes.
Diffstat (limited to 'martyalchin/templates/article.html')
-rw-r--r-- | martyalchin/templates/article.html | 13 |
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 %} |