feat: add block layout for home page with CSS

This commit is contained in:
Matthieu Bessat 2024-07-22 12:07:02 +02:00
parent 282b719e61
commit c2a2721ec6
13 changed files with 842 additions and 351 deletions

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Autotasker</title>
<link href="/assets/styles/simple.css" rel="stylesheet">
<link href="/assets/styles/app.css" rel="stylesheet">
</head>
<body>
<div class="container">
{% block body %}{% endblock %}
</div>
</body>
</html>

View file

@ -1,3 +1,5 @@
{% extends "layouts/base.html" %}
{% block body %}
<h1>Hello welcome on autotasker</h1>
You main want to start in here.
@ -10,3 +12,4 @@ Autotasker is free software under <a href="https://www.gnu.org/licenses/gpl-3.0.
You can find source code on a <a href="https://forge.lefuturiste.fr/mbess/autotasker">self-hosted forge repository</a>.
</p>
{% endblock %}