aboutsummaryrefslogblamecommitdiffstats
path: root/waterspill/templates/index.html
blob: d7bd1e37d2095edbc84a11844c8b05c1b7a4c443 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                
                                           



                                
                                                                                                                                                                    
                                                                 
                                                                   











                                                                                
                                           

                                
                                                                                                                                                              











                                                                       
{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %} 
                        {% if articles %}
                        {% for article in articles %}        
                            {% if loop.index == 1 %}
  	
    <div class="blogItem">
    
      <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
      <h3>Le {{ article.locale_date }}</h3>
      
      {{ article.content }}	

      
      <h3 class="blogMeta">Par <a href="#">{{ article.author }}</a>, Catégorie : <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></h3>
	<h3 class="blogMeta">Tags : {% for tag in article.tags %}
<span><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> / </span>
{% endfor %}</h3>
    
    </div><!-- end #blogItem -->
 {% if loop.length  > 1 %}	
        <div class="blogItem">
                <h2>Autres articles</h2>
        </div>
{% endif %}
{% else %}    
    <div class="blogItem">
    
      <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
      <h3>Le {{ article.locale_date }}</h3>
      
      {{ article.summary }}	
<h3 class="blogMeta">Par <a href="#">{{ article.author }}</a>, Catégorie : <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></h3>
	<a href="{{ SITEURL }}/{{ article.url }}">Lire la suite …</a>
      
      
	
    
    </div><!-- end #blogItem -->
  {% endif %}
{% endfor %}
{% else %}
       
{% endif %}
{% endblock content %}