aboutsummaryrefslogtreecommitdiffstats
path: root/bricabrac/templates/index.html
blob: 67979006ed92a37a30e330f357c1240114931ce2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 %}