You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TheBadSpace/templates/base/frame.twig

19 lines
299 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
{% block title %}
{{ title }}
{% endblock %}
</title>
{% block stylesheets %}{% endblock %}
</head>
<body>
<main>
{% block main %}{% endblock %}
</main>
{% block javascripts %}{% endblock %}
</body>
</html>