flash.moe/templates/html.twig

13 lines
448 B
Twig
Raw Permalink Normal View History

2024-04-24 02:27:26 +00:00
<!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="csrfp-token" content="{{ csrfp_token() }}">{% endif %}
</head>
<body>
2024-04-24 02:27:26 +00:00
{% block master_body %}{% endblock %}
</body>
</html>