24 lines
535 B
Django/Jinja
24 lines
535 B
Django/Jinja
{% extends "layout.jinja2" %}
|
|
|
|
{% block content %}
|
|
|
|
{% if request.authenticated_userid %}
|
|
<p><a href="{{ request.route_url('blog_edit', topic='topic', id='0') }}">
|
|
[Nouveau post]</a>
|
|
</p>
|
|
{% endif%}
|
|
|
|
<ul>
|
|
{% for entry in items %}
|
|
<li>
|
|
{{ entry.edited.strftime("%d-%m-%Y") }}
|
|
<a href="{{ request.route_url('blog', id=entry.id, slug=entry.slug) }}">
|
|
<span class="glyphicon glyphicon-menu-right"></span> {{ entry.title }}
|
|
</a>
|
|
</li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|