init project cleaned

This commit is contained in:
2023-01-05 11:21:32 +01:00
commit bc98268740
54 changed files with 3861 additions and 0 deletions

15
templates/base.html.twig Executable file
View File

@@ -0,0 +1,15 @@
<!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>