pf2db/db_explorer/db_explorer/templates/_base.html
2021-11-17 11:12:31 +01:00

16 lines
409 B
HTML

{% import "_const.html" as c -%}
<!DOCTYPE html>
<html>
<head>
{% block head %}
<title>{% block title %}PF2 DB{% endblock %}</title>
{% endblock %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/base.css') }}"
</head>
<body>
{% block body %}
<i>This page is unintentionally left empty</i>
{% endblock %}
</body>
</html>