index.swig 553 B

1234567891011121314151617181920
  1. {% extends '_layout.swig' %}
  2. {% import '_macro/sidebar.swig' as sidebar_template with context %}
  3. {% block title %}{{ title }}{%- if theme.index_with_subtitle and subtitle %} - {{ subtitle }}{%- endif %}{% endblock %}
  4. {% block class %}index posts-expand{% endblock %}
  5. {% block content %}
  6. {%- for post in page.posts.toArray() %}
  7. {{ partial('_macro/post.swig', {post: post, is_index: true}) }}
  8. {%- endfor %}
  9. {% include '_partials/pagination.swig' %}
  10. {% endblock %}
  11. {% block sidebar %}
  12. {{ sidebar_template.render(false) }}
  13. {% endblock %}