simplyOpen/templates/index.html

39 lines
843 B
HTML
Raw Normal View History

2023-03-16 21:40:13 +01:00
{% extends "base.html" %}
{% block content_title %}{% endblock %}
{℅ block meta_other %}
<meta name="robots" content="noindex" />
{℅ endblock %}
{% if SITEDESCRIPTION %}
2023-03-16 21:46:29 +01:00
<p style="font-size: 1.25em">{{ SITEDESCRIPTION }}</p>
2023-03-16 21:40:13 +01:00
{% endif %}
{% block content %}
{% for article in articles %}
{% if loop.index == 1 %}
<article>
<h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
{{ article.content }}
</article>
<hr />
{% if loop.length > 1 %}
<div>
<h3>Last posts</h3>
<ol class="archive">
{% endif %}
{% elif loop.index < 7 %}
<li>
{% include 'article_link.inc.html' %}
</li>
{% endif %}
{% endfor %}
{% if articles|length > 1 %}
</ol>
</div>
{% endif %}
{% endblock content %}