{% extends "base.html" %} {# Generic Section Index Template Used for non-chronological section landing pages. Falls back when no specialized template exists. Context variables: - section: Section object (for auto-generated pages) - page: Page object (for explicit _index.md files) - posts: Child pages (_posts) - subsections: Child sections (_subsections) Frontmatter options: - show_children: true/false (default: true) Controls whether child pages and subsections are displayed as tiles #} {% from 'partials/navigation-components.html' import breadcrumbs %} {% from 'partials/content-components.html' import child_page_tiles %} {% block content %} {{ breadcrumbs(page if page is defined else section) }}
{{ page.metadata.get('description', '') }}
{% elif section and section.metadata.get('description') %}{{ section.metadata.get('description', '') }}
{% endif %}To add content:
content/{{ section.path.relative_to(site.content_dir) }}/my-page.mdcontent/{{ section.path.relative_to(site.content_dir) }}/_index.mdcontent/{{ section.path.relative_to(site.content_dir) }}/subsection/