rar-index-py/flask/templates/base.html

21 lines
412 B
HTML
Raw Normal View History

<!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>