cl-deck-builder2/templates/markdown.html
2024-03-05 22:11:33 -05:00

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 %}