simplyOpen/templates/index.html

39 lines
844 B
HTML

{% extends "base.html" %}
{% block content_title %}{% endblock %}
{℅ block meta_other %}
<meta name="robots" content="noindex" />
{℅ endblock %}
{% if SITEDESCRIPTION %}
<p style="font-size: 1.25em">{{ SITEDESCRIPTION }}</h3>
{% 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 %}