+ {{ title or metadata.title }}
+
+
+ {# We only bother with preloading the variable font here because chances are
+ that if a browser doesn't support variable fonts it won't support
+ preloading either:
+ https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/preload#browser_compatibility
+ #}
+
+ {% for name in (extraStylesheets or []) %}
+
+ {% endfor %}
+ {% block headStart %}{% endblock %}
+
- {{ title or metadata.title }}
-
-
- {% block extraHead %}{% endblock %}
+
+ {% for name in (extraStylesheets or []) %}
+
+ {% endfor %}
+
+ {% block headEnd %}{% endblock %}
@@ -47,7 +63,9 @@
- {{ content | safe }}
+ {% block content %}
+ {{ content | safe }}
+ {% endblock %}