aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 52e8ad6df27bf4008753ec872e93c3d3878db374 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{# This file is part of GCIDE                                           #}
{# Copyright (C) 2012 Sergey Poznyakoff                                 #}

{# GCIDE is free software; you can redistribute it and/or modify        #}
{# it under the terms of the GNU General Public License as published by #}
{# the Free Software Foundation; either version 3, or (at your option)  #}
{# any later version.                                                   #}

{# GCIDE is distributed in the hope that it will be useful,             #}
{# but WITHOUT ANY WARRANTY; without even the implied warranty of       #}
{# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        #}
{# GNU General Public License for more details.                         #}

{# You should have received a copy of the GNU General Public License    #}
{# along with GCIDE.  If not, see <http://www.gnu.org/licenses/>.       #}

{% load withsetting %}
{% withsetting MEDIA_URL as media_prefix %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>{{ page.title|striptags }}GNU Collaborative International Dictionary of English</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="gcide cide webster" />
<meta name="description" content="GNU Collaborative International Dictionary of English" />
<meta name="robots" content="{{ page.robots }}" />
<link rel="stylesheet" type="text/css" href="{{ media_prefix }}/gcide.css" />
<link rel="search" type="application/opensearchdescription+xml" title="GCIDE WebSearch" href="{% url opensearch %}" />
<script type="text/javascript" src="{{ media_prefix }}/dicoweb.js"></script>
</head>

<body>
{% block warning %}{% endblock %}
<div id="content">
<h1>GNU Collaborative International Dictionary of English</h1>


<div id="menu">
  <ul>
    <li class="tab"><a {{ menu_class.about|safe }} href="/">About</a></li>
    <li class="tab"><a {{ menu_class.license|safe }} href="/license">License</a>
</li>
    <li class="tab"><a {{ menu_class.download|safe }} href="/download">Download</a></li>
  </ul>
</div>

{% block search %}{% endblock %}

<div class="clear"></div>

<div id="results">
{% block results %}{% endblock %}
</div>

<div id="footer">
<p>  
  Powered by <a href="http://www.gnu.org.ua/software/dico/">GNU
  Dico</a>. Copyright &copy; 2008-{% now "Y" %} GNU Dico Team.
</p>
{% block license %}{% endblock %}
<p>
  Please send broken links and other corrections or suggestions to
  <a href="mailto:gray@gnu.org.ua">Sergey Poznyakoff</a>.
</p>
</div>
</div>

</body>
</html>
{% endwithsetting %}

Return to:

Send suggestions and report system problems to the System administrator.