flash.moe/templates/html.twig
2025-03-20 21:49:41 +00:00

12 lines
447 B
Twig

<!doctype html>
<html>
<head>
<meta charset="{{ master_charset|default('utf-8') }}">
{% if master_title is defined and master_title is not empty %}<title>{{ master_title }}</title>{% endif %}
{% block master_head %}{% endblock %}
{% if csrfp_available() %}<meta name="csrf-token" content="{{ csrfp_token() }}">{% endif %}
</head>
<body>
{% block master_body %}{% endblock %}
</body>
</html>