blob: 48857c4903f406f6df5ff4ad3498da1021b0f293 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block content %}
<section id="home-blurb">
{{ section.content | safe }}
</section>
<section id="translations">
This page is also available in:
{% for l in section.translations %}
{% if l.lang != lang %}
<a href="{{ l.permalink | safe }}">{{ trans(key=l.lang) }}</a>
{% endif %}
{% endfor %}
</section>
<section class="subsections">
{% for sub in section.subsections %}
{% set s = get_section(path=sub) %}
<article>
<header>
<h1><a href="{{s.permalink | safe}}">{{ s.title }}</a></h1>
<div class="description">
{{ s.description | markdown | safe }}
</div>
</header>
<section class="post-list">
<h2>{{ trans(key="latest", lang=lang) }}</h2>
<ul>
{% for post in s.pages | reverse %}
<li>
{{ post.date }}:
<a href="{{ post.permalink | safe }}">
{{ post.title }}
</a>
</li>
{% if loop.index == 5 %}{% break %}{% endif %}
{% endfor %}
</ul>
</section>
<footer>
<a href="{{ s.permalink }}">{{ trans(key="allposts", lang=lang) }} {{ s.title }}...</a>
</footer>
</article>
{% endfor %}
</section>
{% endblock content %}
|