Files
tidal-dl-ng-webui/templates/pages/index.html
2024-12-27 22:00:28 +09:00

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 %}