diff options
Diffstat (limited to 'bricabrac/templates/index.html')
-rw-r--r-- | bricabrac/templates/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/bricabrac/templates/index.html b/bricabrac/templates/index.html new file mode 100644 index 0000000..6797900 --- /dev/null +++ b/bricabrac/templates/index.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} +{% block content_title %}{% endblock %} +{% block content %} +{% if articles %} + {% for article in articles %} + + {# First item #} +{% if loop.first %} +<header> +<h1><a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITEDESCRIPTION %} <strong>{{ SITEDESCRIPTION }}</strong>{% endif %}</a> : <a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1> +{% if not HIDE_DATE %}<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>{% endif %} +</header> +<article> +{{ article.summary }} +<p><a href="{{ SITEURL }}/{{ article.url }}" id="page-title"><u>lire la suite</u></a></p> +</article> + {% if loop.length > 1 %} +<section id="article-list"> +<h2>Tous les articles</h2> +<ol> + {% endif %} + {# other items #} + {% else %} +<li><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalien vers {{ article.title|striptags }}">{{ article.title }}</a></li> + {% endif %} +{% endfor %} + </ol> + </section><!-- #article-list --> +{% else %} + No posts found. +{% endif %} +{% endblock content %} |