forked from MountainLinuxClub/website
8 lines
145 B
HTML
8 lines
145 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
{% if page.title %}
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
{% endif %}
|
||
|
{{ page.content | safe }}
|
||
|
{% endblock %}
|