This commit is contained in:
2024-12-27 22:00:28 +09:00
commit 2353324570
56 changed files with 8265 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{# templates/pages/home.html #}
{% extends "base.html" %}
{% block content %}
<div class="container">
<h1>Welcome to the Home Page</h1>
<p>This is the home page content.</p>
</div>
{% endblock %}
{% block css %}
{{ super() }}
<style>
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
</style>
{% endblock %}