{% extends "base.html" %} {% block content %} {% if not pagination.next %}

Journal

{{ config.title | default("bckt") }}

{{ config.description | default("A clear, text-first weblog built with bckt.") }}

{% endif %}
{% set page_size = posts | length %} {% for post in posts %} {% if pagination.current == pagination.total %} {% set post_number = (pagination.current - 1) * config.homepage_posts + page_size - loop.index0 %} {% else %} {% set post_number = pagination.current * config.homepage_posts - loop.index0 %} {% endif %} {% if post.type == "note" %} {% include "partials/summary-note.html" %} {% else %} {% include "partials/summary-default.html" %} {% endif %} {% else %}

No posts yet.

{% endfor %}
{% if pagination.total > 1 %} {% endif %}
{% include "partials/sidebar.html" %}
{% endblock content %}