44 lines
991 B
HTML
44 lines
991 B
HTML
{% extends "base.html" %}
|
|
{% block content_title %}{% endblock %}
|
|
{℅ block meta_other %}
|
|
<meta name="robots" content="noindex" />
|
|
<meta property=og:title content="{{ SITENAME }}" />
|
|
{% if SITEDESCRIPTION %}
|
|
<meta property=og:description content="{{ SITEDESCRIPTION }}" />
|
|
{% endif %}
|
|
{℅ endblock %}
|
|
|
|
{% block content %}
|
|
{% if SITEDESCRIPTION %}
|
|
<p style="font-size: 1.3em">{{ SITEDESCRIPTION }}</p>
|
|
{% endif %}
|
|
{% 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 %}
|