The beginning

Added the base structure and a minimal web frontend. Much work needed.
This commit is contained in:
Michael Rodin 2023-10-16 21:58:50 +02:00
parent 25b5af94fd
commit a2f9b4f978
9 changed files with 247 additions and 9 deletions

21
flask/templates/base.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/base.css" />
<title>RAR-Index {{title}}</title>
</head>
<body>
<header>
<span id="title">{{title}}</span>
<div id="container">
<button class="big-button">&#x1F50E;</div>
</div>
</header>
<div id="content">
{% block content %}
{% endblock %}
</div>
</body>
</html>

View file

@ -0,0 +1,5 @@
{% extends "base.html" %}
{% block content %}
<p>Test</p>
{% endblock %}