mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
24 lines
1,016 B
HTML
24 lines
1,016 B
HTML
{% extends "base.html" %}
|
|
{% block containerclass %}container-wide{% endblock %}
|
|
{% 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, depuis 2009. 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 style="background-image: url('{{ article.image }}') !important;"><span class="post"><a class="post_title" href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></span><span class="description"><span class="headline">{{ article.headline }}</span><time class="created" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></span></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% include 'pagination.html' %}
|
|
{% endblock content %}
|