blob: c674117e88b126baa91893602850e54c7fb96f25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>{% block title %}{% endblock %}{{apptitle}}</title>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.css"/>
<link rel="stylesheet" href="css/phinde.css"/>
<link rel="icon" href="favicon.ico"/>
<meta name="generator" content="phinde" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="search" title="{{apptitle}}" type="application/opensearchdescription+xml" href="/opensearchdescription.php"/>
{% block meta %}{% endblock %}
</head>
<body>
<div class="navbar navbar-inverse navbar-static-top">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li>
<a class="brand" href="{{baseUrl}}">{{apptitle}}</a>
</li>
</ul>
<form class="navbar-form pull-left" method="get" action="/">
<input type="text" name="q" placeholder="Search" id="searchq"
value="{{query}}" class="input-xxlarge"/>
{% if siteParam %}
<input type="hidden" name="site" value="{{site}}"/>
{% endif %}
<button type="submit" class="btn">Find</button>
</form>
</div>
</div>
</div>
{% block maincontent %}{% endblock %}
<div class="container footer">
Powered by
<a href="https://github.com/cweiske/phinde"><em>phinde</em></a>,
the self-hosted search engine.
<a href="/status.php" class="disguised">status</a>
</div>
</body>
</html>
|