Started project with initial Flask layout

This commit is contained in:
Gregory Ballantine
2025-11-18 15:30:33 -05:00
parent 75af9c7f96
commit 5db50bc271
5 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{% extends 'layout.jinja' %}
{% block title %}Dashboard{% endblock %}
{% block content %}
<p>Welcome to the Muspah dashboard!</p>
{% endblock %}