File: base.html

package info (click to toggle)
dico 2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 17,876 kB
  • ctags: 11,307
  • sloc: ansic: 78,537; sh: 46,494; python: 5,487; lex: 2,617; yacc: 1,436; tcl: 1,434; makefile: 1,267; perl: 655; lisp: 463; awk: 300; php: 59; cpp: 44; fortran: 25; asm: 19; sed: 16; xml: 8
file content (37 lines) | stat: -rw-r--r-- 1,499 bytes parent folder | download
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
{% load media %}{% load url from future %}
<!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 Dico Web</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<meta name="keywords" content="gnu dico web search interface, dicoweb, dictionaries, dict protocol" />
<meta name="description" content="GNU Dico WebSearch Interface" />
<meta name="robots" content="{{ page.robots }}" />
<link rel="stylesheet" type="text/css" href="{% media_prefix %}dicoweb.css" />
<link rel="search" type="application/opensearchdescription+xml" title="GNU Dico WebSearch" href="{% url 'opensearch' %}" />
<script type="text/javascript" src="{% media_prefix %}dicoweb.js"></script>
</head>

<body>
  <div id="wrap">
    <div id="logo">
      <h1><a href="{% url 'views.index' %}" accesskey="1">GNU Dico</a></h1>
      <img src="{% media_prefix %}gnu-head-sm.jpg" width="129" height="122" alt="GNU" />
    </div>
    <div id="main">
      {% block search %}{% endblock %}
    </div>
  </div><!-- /wrap -->
  <div class="clear"></div>

{% block results %}{% endblock %}

  <div id="footer">
    <a href="http://www.gnu.org/software/dico/">GNU Dico</a>
    Web interface. Copyright &copy; 2008-{% now "Y" %} GNU Dico Team.
  </div>

</body>
</html>