Initial commit

This commit is contained in:
Oliver Davies 2020-12-26 21:23:15 +00:00
commit ca1886b0df
24 changed files with 3836 additions and 0 deletions

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

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