---
layout: null
---
{%- comment -%}
Backwards-compatible wrapper:
• If the page already contains a full HTML document, just render it as-is.
• Otherwise, inject the shared head/header/footer around the fragment.
{%- endcomment -%}
{%- assign _raw = content | downcase -%}
{%- if _raw contains '
{%- if page.title -%}{{ page.title }}{%- else -%}Patch & Pot{%- endif -%}
{%- if page.description -%}
{%- endif -%}
{%- if page.head_extra -%}{{ page.head_extra }}{%- endif -%}
{%- include header.html -%}
{{ content }}
{%- include footer.html -%}
{%- include mobile-menu.js.html -%}
{%- if page.scripts_extra -%}{{ page.scripts_extra }}{%- endif -%}
{%- endif -%}