test
This commit is contained in:
20
templates/pages/index.html
Normal file
20
templates/pages/index.html
Normal 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 %}
|
Reference in New Issue
Block a user