2024-09-15 00:39:25 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Search and download torrents directly to mediacenter</title>
|
|
|
|
<script src="https://unpkg.com/htmx.org@2.0.0" integrity="sha384-wS5l5IKJBvK6sPTKa2WZ1js3d947pvWXbPJ1OmWfEuxLgeHcEbjUUA5i9V5ZkpCw" crossorigin="anonymous"></script>
|
2024-09-18 01:58:35 +02:00
|
|
|
<link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
|
2024-09-15 00:39:25 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<menu>
|
2024-09-18 01:58:35 +02:00
|
|
|
<li hx-get="/search" hx-replace-url="/search" hx-target="#content">Search</li>
|
2024-09-15 00:39:25 +02:00
|
|
|
<li hx-get="/active" hx-replace-url="/active" hx-target="#content">Active downloads</li>
|
|
|
|
</menu>
|
2024-09-18 01:58:35 +02:00
|
|
|
<div id="content">
|
2024-09-15 00:39:25 +02:00
|
|
|
{% block content %}
|
2024-09-18 01:58:35 +02:00
|
|
|
{% if include_template %}
|
|
|
|
{% include include_template %}
|
|
|
|
{% endif %}
|
2024-09-15 00:39:25 +02:00
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|