Initial
This commit is contained in:
16
templates/base.html
Normal file
16
templates/base.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ self.title() }}</title>
|
||||
</head>
|
||||
<body>
|
||||
{% include "header.html" %}
|
||||
|
||||
<main>
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
{% include "footer.html" %}
|
||||
</body>
|
||||
</html>
|
||||
5
templates/error.html
Normal file
5
templates/error.html
Normal file
@@ -0,0 +1,5 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
A server error happened: {{ error }}
|
||||
{% endblock %}
|
||||
3
templates/footer.html
Normal file
3
templates/footer.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<footer>
|
||||
<small>© 2026 MCorange. Licensed under the GNU GPL v3 or later.</small>
|
||||
</footer>
|
||||
2
templates/header.html
Normal file
2
templates/header.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<header>
|
||||
</header>
|
||||
4
templates/home.html
Normal file
4
templates/home.html
Normal file
@@ -0,0 +1,4 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user