{#```twig #} {{ title|striptags }}{% if title and site.title %} | {% endif %}{{ site.title }} {%- for href in site.styles %} {%- endfor %} {%- for src in site.scripts %} {%- endfor %} {{ content_for_header|raw }} {{ site.head_extras|default([])|join('\n')|raw }} {% block body %}

{{ title }}

{{ content|raw }}
{% endblock %} {{ site.body_extras|default([])|join('\n')|raw }} {#``` Usage in Twig layout: ```twig {% extends 'blades/html.twig' %} {% block body %}...{% endblock %} ``` Pass `site`, `title` and `description` via the render context. #}