working webapp with basic styling

This commit is contained in:
Bryan Bailey
2022-04-04 22:16:43 -04:00
parent 3c94149943
commit 56b4ec2670
13 changed files with 314 additions and 9 deletions

14
templates/404.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block meta %}
{{ super() }}
<!-- Add additional meta tags here -->
{% endblock %}
{% block title %}Testing{% endblock %}
{% block page_content %}
<div class="page-header">
<h1>Opps! File not found</h1>
</div>
{% endblock %}