aboutsummaryrefslogtreecommitdiffstats
path: root/lighweight/templates/article.html
diff options
context:
space:
mode:
authorskami <skami@skami-laptop.dyndns.org>2011-02-13 20:21:01 +0100
committerskami <skami@skami-laptop.dyndns.org>2011-02-13 20:21:01 +0100
commit079da3ce990ccc101b58fe1b5ded8342d52244a6 (patch)
tree884105ee18236990e0a0d24cb02ecdc20f5d47b5 /lighweight/templates/article.html
parent4de1596e020f297b18281d39d03753e5a1215aeb (diff)
downloadpelican-themes-079da3ce990ccc101b58fe1b5ded8342d52244a6.tar.gz
Ajout du thème «lightweight»
Diffstat (limited to 'lighweight/templates/article.html')
-rw-r--r--lighweight/templates/article.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/lighweight/templates/article.html b/lighweight/templates/article.html
new file mode 100644
index 0000000..b4d872e
--- /dev/null
+++ b/lighweight/templates/article.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %}
+
+{% block content %}
+ <article class="post">
+ <h2 class="page_title"><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></h2>
+ <details class="meta">
+ <p>
+ Posté{%if article.date %} le <time pubdate="pubdate" datetime="{{ article.date }}">{{ article.locale_date }}</time>{% endif %}{% if article.author %} par {{ article.author }}{% endif %} dans «<a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>».
+ {% if articles.tags %}<br />Tags : {% for tag in article.tags %}{% if loop.index > 1%}, {% endif %}<span class="tag"><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></span>{% endfor %}{%endif%}
+ </p>
+ </details>
+ <section class="post_content">
+ {{ article.content }}
+ </section>
+ </article>
+{% endblock %}