cl-deck-builder2/templates/layouts/minimal.html

11 lines
211 B
HTML
Raw Normal View History

2024-01-21 02:35:35 -05:00
<!doctype html>
<html lang="en">
<head>
{% include "layouts/html-head.html" %}
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>