37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<link rel="shortcut icon" href="/static/favicon.ico">
|
||
<link rel="stylesheet" href="/static/base.css" />
|
||
{% block meta %}
|
||
{% endblock %}
|
||
<title>RAR-Index – {{title}}</title>
|
||
</head>
|
||
|
||
<body>
|
||
<header>
|
||
<a href="/"><img src="/static/favicon.ico" alt="favicon"></a>
|
||
<span id="title">{{title}}</span>
|
||
<div id="container">
|
||
{% if login %}
|
||
<a href="/add"><button class="big-button"><b>+</b></button></a>
|
||
{% endif %}
|
||
<form action="/search" method="get">
|
||
<input type="text" name="q" placeholder="search">
|
||
<input type="submit" value="🔎" class="big-button" id="search-button">
|
||
</form>
|
||
{% if login %}
|
||
<a href="/user/{{userdata[0]}}"><button class="big-button">{{userdata[2]}}</button></a>
|
||
<a href="/logout"><button class="big-button">Logout</button></a>
|
||
{% else %}
|
||
<a href="/login"><button class="big-button">Login</button></a>
|
||
{% endif %}
|
||
</div>
|
||
</header>
|
||
<div id="content">
|
||
{% block content %}
|
||
{% endblock %}
|
||
</div>
|
||
</body>
|
||
|
||
</html> |