{% extends '_layout/layout.twig' %} {% import '_layout/icons.twig' as icons %} {# Feed auto-discovery — only shows up on /blog/* pages, since only this layout overrides the root layout's empty head_extra block. See App/pages/blog/feed/index.php. #} {% block head_extra %} {% endblock %} {% block content %}
{% block blog_content %}{% endblock %} {# Only pages whose sidecar opts in by returning a 'comments' key get a thread — see /admin/docs/comments and App/pages/blog/hello-world/index.php. A sidecar-less post never has this key, so it's silently skipped. #} {% if comments is defined %} {% include '_partials/comments/thread.twig' %} {% endif %}
{% endblock %}