initial
This commit is contained in:
23
themes/next/layout/index.swig
Normal file
23
themes/next/layout/index.swig
Normal file
@ -0,0 +1,23 @@
|
||||
{% 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 %}
|
Reference in New Issue
Block a user