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

30 lines
965 B
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. -->
<head profile="http://purl.org/uF/2008/03/ http://purl.org/uF/hAtom/0.1/">
<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>
<link rel="stylesheet" type="text/css" href="/media/style.css" />
<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 %}
</body>
</html>