{{ subsection.title }}
{% if subsection.metadata.get('description') %}{{ subsection.metadata.get('description') }}
{% endif %} {% if subsection.pages %} {% endif %}{% extends "base.html" %} {% from 'partials/navigation-components.html' import breadcrumbs, section_navigation, pagination with context %} {% from 'partials/content-components.html' import article_card %} {# Chronological Archive Template Used for blog-style sections with dated posts. Displays content in reverse chronological order with pagination. When to use: - Blog posts - News articles - Any time-ordered content Context variables: - section: Section object - posts: List of pages (may be paginated) - subsections: Child sections - total_pages: Total pagination pages (if paginated) - current_page: Current page number (if paginated) #} {% block content %} {{ breadcrumbs(section if section is defined else page) }} {# Section navigation for section pages - dogfooding section properties #} {% if section %} {{ section_navigation(section) }} {% endif %}
{{ description }}
{% elif section and section.metadata.get('description') %}{{ section.metadata.get('description') }}
{% endif %} {% if total_pages %}Showing {{ posts | length }} of {{ total_posts }} posts {% if current_page > 1 %}(Page {{ current_page }} of {{ total_pages }}){% endif %}
{% endif %}{{ subsection.metadata.get('description') }}
{% endif %} {% if subsection.pages %} {% endif %}To add posts:
content/{{ section.path.relative_to(site.content_dir) }}/my-post.md
date: 2025-01-01💡 Posts in this section will be displayed in reverse chronological order.