torent-downloader/templates/index.html

24 lines
924 B
HTML

<!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>
<link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
</head>
<body>
<menu>
<li>Search <input class="search" hx-get="/list" hx-replace-url="true" hx-target="#content" type=text name=query /></li>
<li hx-get="/active" hx-replace-url="/active" hx-target="#content">Active downloads</li>
</menu>
<div id="content">
{% block content %}
{% if include_template %}
{% include include_template %}
{% endif %}
{% endblock %}
</div>
</body>
</html>