first commit

This commit is contained in:
dongho
2024-12-11 02:07:36 +09:00
commit c309cd3f0d
9 changed files with 322 additions and 0 deletions

14
templates/index.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block title %}Home Page{% endblock %}
{% block content %}
<div class="container">
<h1>Hello World</h1>
</div>
{% endblock %}
{% block css %}
{{ super() }}
{% endblock %}