Added header to 404 page

This commit is contained in:
Chris Kankiewicz
2020-01-04 16:45:17 -07:00
parent edce559893
commit 7e95f59cf7

View File

@@ -1,9 +1,13 @@
{% extends 'layouts/app.twig' %}
{% block content %}
<div id="content" class="container flex flex-col justify-center items-center h-screen mx-auto px-4">
<p class="font-sans font-light text-4xl text-gray-600">
404 &bull; Not Found
</p>
<div class="flex flex-col h-screen">
{% include 'components/header.twig' %}
<div id="content" class="flex-grow container flex justify-center items-center mx-auto px-4">
<p class="font-sans font-light text-4xl text-gray-600">
404 &bull; Not Found
</p>
</div>
</div>
{% endblock %}