feat(main): adds main module

This commit is contained in:
2024-09-29 17:34:48 -03:00
parent d74faad9ec
commit 999ebb0c27
4 changed files with 10 additions and 0 deletions

8
app/templates/index.html Normal file
View File

@@ -0,0 +1,8 @@
{% extends "layout.html" %}
{% block head %}
{{ super() }}
{% block title %}Home{% endblock %}
{% endblock %}
{% block content %}
<p>Hello, World!</p>
{% endblock %}