{# Base layout shared by every default oxie template. Only `title` and `phrases` are available in every render context, so anything else must be guarded with `is defined`. `site_url` and `feed_url` are Jinja globals set by Site, so they are available everywhere; `canonical` is per-page and passed by each render call. Navigation uses root-absolute links, matching the root-absolute `post.link` values the generator produces. Styling is Tailwind CSS v4; classes here are picked up by the @source globs in src/styles.css. #} {% block page_title %}{{ title }}{% endblock %} {% if canonical %}{% endif %} {% if feed_url %}{% endif %} {% block meta %}{% endblock %} {% if jsonld %}{% endif %}
{{ site_name | default(title) }}
{% block content %}{% endblock %}