verdandi/test_input/templates/base.html

17 lines
349 B
HTML
Raw Normal View History

2015-02-26 20:26:39 +01:00
<html>
<head>
<title>{{page_title}}</title>
</head>
<body>
2015-04-06 22:59:09 +02:00
{{menu}}
<br/>
{% block content %}
<h1 class="mainheading">{{page_title}}</h1>
{{content}}
<br/>
Created: {{content_creation_time.strftime('%d.%m.%Y %H:%M:%S')}}</br>
Edit: {{content_edit_time.strftime('%d.%m.%Y %H:%M:%S')}}</br>
{% endblock %}
2015-02-26 20:26:39 +01:00
</body>
</html>