cl-deck-builder2/templates/markdown.html

14 lines
307 B
HTML
Raw Normal View History

2024-01-21 02:35:35 -05:00
{% 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 %}