blog.notmyidea.org/pelicanyan/templates/index.html

23 lines
850 B
HTML

{% extends "base.html" %}
{% block extrahead %}
<style>
</style>
{% endblock %}
{% block content %}
<div class="content-title">
{% block content_title %}{% endblock %}
<p>Bonjour, et bienvenue sur mes (<a href="/pages/about.html">Alexis</a>) carnets. Il s'agit de réflexions que je souhaite partager, bonne lecture !</p>
<div class="posts">
<ul id="blog_index">
{% for article in articles_page.object_list %}
{% if not article.unlisted or article.category == category %}
<li><span class="post"><a class="post_title" href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></span><span class="headline">{{ article.headline }}</span><time class="created" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></li>
{% endif %}
{% endfor %}
</ul>
</div>
{% include 'pagination.html' %}
{% endblock content %}