21 lines
412 B
HTML
21 lines
412 B
HTML
|
<!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>
|