You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
620 B
28 lines
620 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Tor Explorer</title>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<a href="/"><h1>Tor Explorer</h1></a>
|
|
<form>
|
|
<label>
|
|
Search
|
|
<input type="search" name="s" value="{{ req.query.s }}">
|
|
</label>
|
|
</form>
|
|
</header>
|
|
|
|
<main>
|
|
{% block main %}{% endblock %}
|
|
</main>
|
|
|
|
<footer>
|
|
<a target="_blank" href="https://github.com/lukechilds/tor-explorer">Source code</a> - <a target="_blank" href="https://github.com/lukechilds/tor-explorer/issues">Report a bug</a>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|