aboutsummaryrefslogtreecommitdiffstats
path: root/lightweight/templates/index.html
diff options
context:
space:
mode:
authorskami <skami@skami-laptop.dyndns.org>2011-02-13 20:22:23 +0100
committerskami <skami@skami-laptop.dyndns.org>2011-02-13 20:22:23 +0100
commit3072332a1549bbdbc458c13112b6013716c5782b (patch)
tree1913657c03b86597d01425e674a78f8b8a6bfb83 /lightweight/templates/index.html
parent079da3ce990ccc101b58fe1b5ded8342d52244a6 (diff)
downloadpelican-themes-3072332a1549bbdbc458c13112b6013716c5782b.zip
pelican-themes-3072332a1549bbdbc458c13112b6013716c5782b.tar.gz
pelican-themes-3072332a1549bbdbc458c13112b6013716c5782b.tar.bz2
Ajout d'un thème
Diffstat (limited to 'lightweight/templates/index.html')
-rw-r--r--lightweight/templates/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/lightweight/templates/index.html b/lightweight/templates/index.html
new file mode 100644
index 0000000..b51a318
--- /dev/null
+++ b/lightweight/templates/index.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+{% block title %}{{ SITENAME }} - Accueil{% endblock %}
+
+{% block content %}
+ {% if articles %}
+ {% for article in articles %}
+ <article class="post">
+ <h2 class="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.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.summary }}<br />
+ <a class="more" href="{{ SITEURL }}/{{ article.url }}">Lire la suite...</a>
+ </section>
+ </article>
+ {% endfor %}
+ {% endif %}
+{% endblock %}