{% extends "base.html" %} {% from 'partials/navigation-components.html' import breadcrumbs, page_navigation with context %} {% from 'partials/content-components.html' import tag_list, random_posts with context %} {% block content %} {# Action Bar: Breadcrumbs + Share #} {% include 'partials/action-bar.html' %}
{{ content | safe }}
{% if page.tags %}
Tags: {{ tag_list(page.tags) }}
{% endif %}
{% if toc %} {% endif %}
{# Page Navigation (prev/next) #} {{ page_navigation(page) }} {# Related Posts Section (for pages with tags) - Pre-computed during build #} {% set related = page.related_posts[:3] %} {% if related %} {% endif %} {% endblock %}