20 lines
363 B
HTML
20 lines
363 B
HTML
{# 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 %} |