24 lines
643 B
Plaintext
24 lines
643 B
Plaintext
{% extends '_layout.swig' %}
|
||
{% import '_macro/post.swig' as post_template %}
|
||
{% import '_macro/sidebar.swig' as sidebar_template %}
|
||
|
||
{% block title %}{{ title }}{% if theme.index_with_subtitle and subtitle %} – {{ subtitle }}{% endif %}{% endblock %}
|
||
|
||
{% block page_class %}
|
||
{% if is_home() %}page-home{% endif -%}
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
<section id="posts" class="posts-expand">
|
||
{% for post in page.posts %}
|
||
{{ post_template.render(post, true) }}
|
||
{% endfor %}
|
||
</section>
|
||
|
||
{% include '_partials/pagination.swig' %}
|
||
{% endblock %}
|
||
|
||
{% block sidebar %}
|
||
{{ sidebar_template.render(false) }}
|
||
{% endblock %}
|