mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 11:32:39 +02:00
23 lines
850 B
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 %}
|