Add the Home page

This commit is contained in:
Oliver Davies 2020-12-26 21:45:49 +00:00
parent 559ed8e908
commit cdb0e67eb3
4 changed files with 48 additions and 0 deletions

5
templates/page.html.twig Normal file
View file

@ -0,0 +1,5 @@
{% extends 'html.html.twig' %}
{% block body %}
{% block content %}{% endblock %}
{% endblock %}

View file

@ -0,0 +1,5 @@
{% extends 'page.html.twig' %}
{% block content %}
This is the homepage.
{% endblock %}