rar-index-py/flask/templates/base.html
marcel d4016ce80c First functions
Added first functions in backend
The homepage can now show the most recent archives
2023-10-17 18:25:38 +02:00

23 lines
No EOL
452 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/base.css" />
{% block meta %}
{% endblock %}
<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>