You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
644 B

{%- extends "_layout.swig" -%}
{%- import '_macro/post.swig' as post_template -%}
{%- import '_macro/archive.swig' as archive_template -%}
{%- block title -%} {{ config.title }} {%- endblock -%}
{%- block content -%}
{%- set mode = theme.mode.toLowerCase() -%}
<section id="posts" class="posts">
{%- if mode == 'default' -%}
{%- for post in page.posts -%}
{%- if post.display -%}
{{ post_template.render(post) }}
{%- endif -%}
{%- endfor -%}
{%- include "_partial/pagination.swig" -%}
{%- else -%}
{{ archive_template.render() }}
{%- endif -%}
</section>
{%- endblock -%}