base.html
1.67 KB
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
47
48
49
50
51
{% load url from future %}<!DOCTYPE HTML>
<!-- Website template by freewebsitetemplates.com -->
<html>
<head>
<meta charset="UTF-8">
<title>Periphraser</title>
<link rel="stylesheet" href="{{ STATIC_URL }}css/main_style.css" type="text/css">
<script type="text/javascript" src="{{ STATIC_URL }}js/jquery-3.1.1.min.js"></script>
{% load script json %}
{% if js_vars %}
{% script %}
{% for name,var in js_vars.iteritems %}
var {{ name }} = {{ var|jsonify }};
{% endfor %}
{% endscript %}
{% endif %}
{% block extrahead %}{% endblock %}
</head>
<body>
<div id="header">
<div>
<div class="logo">
<a href="/">Periphraser</a>
</div>
<ul id="navigation">
{% if user.is_authenticated %}
<li class="active">
<a href="#">Wyrażenia</a>
</li>
<li>
<strong><a href="{% url 'auth_password_change' %}">{{ user.username }}</a></strong>
<a href="{% url 'auth_logout' %}">(Wyloguj)</a>
</li>
{% endif %}
</ul>
</div>
</div>
<div id="contents">
{% block content %}{% endblock %}
</div>
<div id="footer">
<div class="clearfix">
<p>
Periphraser logo graphic by <a href="http://www.flaticon.com/authors/roundicons">Roundicons</a> from <a href="http://www.flaticon.com/">Flaticon</a> is licensed under <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC BY 3.0</a>. Made with <a href="http://logomakr.com" title="Logo Maker">Logo Maker</a>.
<br>
© 2016 IPI PAN. All Rights Reserved.
</p>
</div>
</div>
</body>
</html>