{% comment %}```liquid {% endcomment %} {% # prettier-ignore %} {{ title | strip_html }}{% if title and site.title %} | {% endif %}{{ site.title }} {%- for href in site.styles %} {%- endfor %} {%- for src in site.scripts %} {%- endfor %} {{ content_for_header }} {{ site.head_extras | default: '' | join: '\n' }} {% if body %} {{ body }} {% else %}

{{ title }}

{{ content }}
{% endif %} {{ site.body_extras | default: '' | join: '\n' }} {% # prettier-ignore %} {% comment %}``` Usage in Liquid layout: ```liquid {% capture body %}...{% endcapture %} {% include blades/html.liquid %} ``` Live example: https://github.com/anyblades/buildawesome-starters/blob/main/site-liquid/_includes/default.liquid {% endcomment %}