feat(layout): adds layout page

This commit is contained in:
2024-09-22 11:30:48 -03:00
parent f2ad16aee5
commit 54715ab119
2 changed files with 26 additions and 1 deletions

View File

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