aboutsummaryrefslogtreecommitdiff
path: root/data/templates/base.htm
blob: 72a34c1466d6c1251696fe75034ab6a9a73b798a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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 %} - {{title}}</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" />
  {% 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>