{% extends "delivery/base.html" %} {% block title %}{{ page.meta_title or page.title }} · {{ site.title }}{% endblock %} {% block social_meta %} {%- set _title = page.meta_title or page.title -%} {% if canonical_url %}{% endif %} {% if meta_description %}{% endif %} {% if site %}{% endif %} {% if og_image_url %}{% endif %} {% if meta_description %}{% endif %} {% if og_image_url %}{% endif %} {% endblock %} {% block jsonld %} {%- set jsonld = { "@context": "https://schema.org", "@type": "WebPage", "name": page.title, "url": canonical_url, "dateModified": page.updated_at.isoformat() if page.updated_at else None, "author": {"@type": "Person", "name": author_name} if author_name else None, "publisher": {"@type": "Organization", "name": site.title} if site else None, "description": page.meta_description or page.body_excerpt or None, } -%} {% endblock %} {% block content %}

{{ page.title }}

{{ page.body_html | internal_link_rewrite | unsplash_credit_wrap | pictureify | safe }}
{% endblock %}