Password reset, standardize some stuff.
[cas.git] / src / cas / templates / base.html
1 <!DOCTYPE html>
2 <html>
3   {% load static %}
4   <head>
5     <meta charset="utf-8" />
6     <title>{% block title %}Logowanie{% endblock %} | Fundacja Nowoczesna Polska</title>
7     <link rel="stylesheet" href="{% static 'css/main.css' %}"/>
8     <meta name="viewport" content="width=device-width, initial-scale=1">
9     {% block extrahead %}
10     {% endblock %}
11   </head>
12   <body>
13     <div id="header-wrap">
14       <header>
15         <a href="/">
16           <img title="Fundacja Nowoczesna Polska"
17                alt="Fundacja Nowoczesna Polska"
18                src="{% static 'fnp_black.png' %}">
19         </a>
20       </header>
21     </div>
22
23     <div id="content-wrap">
24       <div id="content">
25         {% block content %}{% endblock %}
26       </div>
27     </div>
28
29   </body>
30 </html>