aboutsummaryrefslogtreecommitdiffstats
path: root/bootlex/templates/article.html
diff options
context:
space:
mode:
authorAlexander Jung-Loddenkemper <alexander.julo@googlemail.com>2012-03-18 14:52:34 +0100
committerAlexander Jung-Loddenkemper <alexander.julo@googlemail.com>2012-03-18 14:52:34 +0100
commite6f3c75122c344a39953c551e1fe480222b23390 (patch)
treea2243ea9b2d07eaa1954c67dfc1f17ae9731d7f6 /bootlex/templates/article.html
parente38b06c659d60590c0000f2938387d7fa161e2e5 (diff)
downloadpelican-themes-e6f3c75122c344a39953c551e1fe480222b23390.tar.gz
added bootlex theme.
Diffstat (limited to 'bootlex/templates/article.html')
-rw-r--r--bootlex/templates/article.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/bootlex/templates/article.html b/bootlex/templates/article.html
new file mode 100644
index 0000000..a407af8
--- /dev/null
+++ b/bootlex/templates/article.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block title %}{{ article.title }}{%endblock%}
+{% block content %}
+<div id="content">
+ <div class="header">
+ <h1>{{ article.title }}</h2>
+ </div>
+ <p class="meta"><small><span>{% if article.author %}<a href="{{ SITEURL }}author/{{ article.author }}/">{{ article.author }}</a> - {% endif %}</span><span>{{ article.locale_date }}</span> - <span class="tags">{% if article.tags %}{% for tag in article.tags %}<a href="/tag/{{ tag }}/">{{ tag }}</a>{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}</small></p>
+ <div class="entry-content">
+ {{ article.content }}
+ </div><!-- /.entry-content -->
+</div>
+{% endblock %}