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.
34 lines
967 B
34 lines
967 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Tor Explorer</title>
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
<meta name="viewport" content="width=device-width">
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<div class="wrapper clearfix">
|
|
<a class="title" href="/"><h1><i class="icon-tor"></i> Tor Explorer</h1></a>
|
|
<form class="search" action="/">
|
|
<label>
|
|
<span class="hide">Search</span>
|
|
<input type="search" placeholder="Search..." name="s" value="{{ req.query.s }}">
|
|
</label>
|
|
</form>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="wrapper">
|
|
{% block main %}{% endblock %}
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="wrapper">
|
|
<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>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|