Select Git revision
validite_hc.tex
index.html 1.09 KiB
{% extends "base.html" %}
{% block content %}
<main>
{% if INDEX %}<section>{{ INDEX }}</section>{% endif %}
<section id="home">
<ul>
{% for article in articles_page.object_list %}
<li>
{% if article.date >= now() %}
<h1><time datetime="{{ article.date }}">{{ article.date|strftime('%b %d, %Y') }}</time></h1>
<h2><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
title="Permalink to {{ article.title|striptags }}">{{ article.title }}
{% if article.author %}
<h3>{{ article.author }}</h3>
{% endif %}
<p>
{{ article.summary }}
<a href="{{ SITEURL }}/{{ article.url }}"><em>Read more...</em></a>
</p>
</li>
{% endif %}
{% endfor %}
</ul>
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
</section>
</main>
{% endblock content %}