Files
dr_who_website/templates/base.html.twig
2023-01-06 17:00:19 +01:00

14 lines
333 B
Twig
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{% endblock title %} - DrWhy</title>
{% block head %}
{% include 'includecss.html.twig' %}
{% endblock head %}
</head>
<body>
{% block body %}{% endblock body %}
{% block footer %}{% include 'includescript.html.twig' %}{% endblock footer %}
</body>
</html>