aboutsummaryrefslogtreecommitdiff
path: root/data/templates/base.htm
blob: a497f017ba23e06d90041cdfbb4121615eceb6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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" />
  <link rel="search" title="{{apptitle}}" type="application/opensearchdescription+xml" href="/opensearchdescription.php"/>
  {% block meta %}{% endblock %}
 </head>
 <body>

  {% block maincontent %}{% endblock %}

  <div class="container footer">
   Powered by <em>phinde</em>, the self-hosted search engine
  </div>
 </body>
</html>