16 lines
335 B
Twig
Executable File
16 lines
335 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>
|