started with flask for kobuki website

This commit is contained in:
ishak jmilou.ishak
2024-09-26 15:31:41 +02:00
parent 38a24b1d98
commit 2fb81b6c72
9 changed files with 213 additions and 1 deletions

15
web/templates/base.html Normal file
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.0">
<title>Document</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
{% block head %}{% endblock %}
</head>
<body>
{% include 'navbar.html' %}
{% block content %}
{% endblock %}
</body>
</html>