TorrentIndexer/templates/details.html

12 lines
369 B
HTML
Raw Normal View History

2017-12-29 03:03:47 +01:00
<!--
vim: ts=2 noexpandtab
-->
{% extends "index.html" %}
2017-12-29 08:03:17 +01:00
{% block title %}{{ super() }} - {{ _("Results") }}{% endblock%}
2017-12-29 03:03:47 +01:00
{% set active_page = "search" %}
{% block content %}
<link href="{{ url_for("static", filename="css/details.css") }}" rel="stylesheet">
<script src="{{ url_for("static", filename="js/main.js") }}"></script>
<h1>DETAILS</h1>
{% endblock content%}