craft-letter/themes/blue-penguin/templates/page.html
Pascal Le Merrer 928e3afebd Track theme
2026-02-22 15:46:50 +01:00

18 lines
383 B
HTML

{% extends "base.html" %}
{% block head %}
{{ super() }}
<script type="application/ld+json">
{{ page.jsonld }}
</script>
{% endblock %}
{% block title %}{{ SITENAME }} | {{ page.title }}{% endblock %}
{% block content %}
<div class="page">
<h1>{{ page.title }}</h1>
{{ page.content }}
</div>
{% endblock %}