/etc/dicoweb/templates/base.html is in dicoweb 2.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 %}
<!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 © 2008-{% now "Y" %} GNU Dico Team.
</div>
</body>
</html>
|