site/content/overrides/chapter.html
2026-02-16 02:57:39 +01:00

16 lines
273 B
HTML
Executable file

{% extends "main.html" %}
<!-- Use the chapter CSS on this page (in addition to the normal CSS) -->
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ base_url }}/assets/css/chapter.css">
{% endblock %}
{% block content %}
{{ super() }}
{% endblock %}