blog.notmyidea.org/mnmlist/templates/index.html
2023-08-11 17:40:35 +02:00

22 lines
No EOL
743 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{% block pagetitle %}{% endblock %}</h1>
{% if articles %}
{% for article in articles[0:10] %}
<section class="section index">
{% if not HIDE_DATE %}
<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
{% endif %}
<h1><a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
{{ article.content|striptags|truncate(200) }}
</section>
{% endfor %}
<ul>
{% for article in articles[10:] %}
<li><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{
article.title }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %}
{% endblock content %}