2024-10-16 23:28:42 +02:00
|
|
|
{% extends 'pageWrapper.html' %}
|
|
|
|
|
|
|
|
|
|
{% block head %}
|
2025-08-02 21:12:58 +02:00
|
|
|
{% set theme_name = theme|default("grass", true) %}
|
|
|
|
|
{% include "header/"+theme_name+"Header.html" %}
|
2024-10-16 23:28:42 +02:00
|
|
|
<title>{{ title }}</title>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
<div class="markdown">
|
|
|
|
|
{{ html_from_markdown | safe}}
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|