The beginning
Added the base structure and a minimal web frontend. Much work needed.
This commit is contained in:
parent
25b5af94fd
commit
a2f9b4f978
9 changed files with 247 additions and 9 deletions
21
flask/templates/base.html
Normal file
21
flask/templates/base.html
Normal 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">🔎</div>
|
||||
</div>
|
||||
</header>
|
||||
<div id="content">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
5
flask/templates/home.html
Normal file
5
flask/templates/home.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<p>Test</p>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue