Files
Archipelago/WebHostLib/templates/markdown_document.html
T
72ae076ce7 WebHost: server render remaining markdown using mistune (#5276)
---------

Co-authored-by: Aaron Wagener <[email protected]>
Co-authored-by: qwint <[email protected]>
Co-authored-by: black-sliver <[email protected]>
2025-08-02 21:12:58 +02:00

15 lines
426 B
HTML

{% extends 'pageWrapper.html' %}
{% block head %}
{% set theme_name = theme|default("grass", true) %}
{% include "header/"+theme_name+"Header.html" %}
<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 %}