14 lines
307 B
HTML
14 lines
307 B
HTML
{% extends "layouts/default.html" %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block content %}
|
|
<div class="content">
|
|
{% if title %}
|
|
<h1 class="title">{{ title }}</h1>
|
|
{% endif %}
|
|
{% if subtitle %}
|
|
<p class="subtitle">{{ subtitle }}</p>
|
|
{% endif %}
|
|
{{ html | safe }}
|
|
</div>
|
|
{% endblock %}
|