mirror of
https://git.bolliret.ch/pcs/pcs-website
synced 2026-01-18 20:51:37 +01:00
9 lines
214 B
HTML
9 lines
214 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block body %}
|
|
<div class="inner_page">
|
|
<h1>{{ this.title }}</h1>
|
|
{{ this.body }}
|
|
{{ this.html }}
|
|
</div>
|
|
{% endblock %}
|