xmpp.chapril.org-conversejs/html/base.html

39 lines
1.4 KiB
HTML
Raw Normal View History

2012-02-27 11:34:32 +01:00
{% load i18n %}
<!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" xml:lang="{% trans "en" %}" lang="{% trans "en" %}">
<!--! This is main page template used for all other pages. -->
2012-02-29 11:08:32 +01:00
<head>
2012-02-27 11:34:32 +01:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Michal Čihař" />
<meta name="copyright" content="Copyright &copy; 2003 - {{ current_year }} Michal Čihař" />
<title>{{ title }}</title>
2012-02-29 11:09:44 +01:00
{% if description %}
<meta name="description" content="{{ description }}" />
{% endif %}
2012-02-27 11:34:32 +01:00
<link rel="stylesheet" type="text/css" href="/media/style.css" />
2012-02-29 13:12:29 +01:00
<link rel="stylesheet" type="text/css" href="/media/css/blitzer/jquery-ui-1.8.18.custom.css" />
<script src="/media/js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="/media/js/jquery-ui-1.8.18.custom.min.js" type="text/javascript"></script>
2012-02-27 11:34:32 +01:00
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<meta name="robots" content="index, follow" />
</head>
<body>
<h1>{{ title }}</h1>
{% block content %}
{% endblock %}
2012-02-29 09:53:39 +01:00
<ul class="footer">
2012-02-29 11:08:03 +01:00
<li>{% blocktrans %}Powered by <a href="http://weblate.org">Weblate {{ version }}</a>{% endblocktrans %}</li>
2012-02-29 09:53:39 +01:00
</ul>
2012-02-27 11:34:32 +01:00
</body>
</html>