This commit is contained in:
Oliver Davies 2019-11-04 23:33:18 +00:00
commit bafd62e248
49 changed files with 7809 additions and 0 deletions

12
templates/base.html.twig Normal file
View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
</body>
</html>