ProfouzorsLinx/templates/base.html

13 lines
163 B
HTML
Raw Normal View History

2015-09-24 07:44:49 +02:00
<html>
<head>
2015-09-24 14:30:16 +02:00
<title>{% block title %}{{ sitename }}{% endblock %}</title>
2015-09-24 07:44:49 +02:00
</head>
<body>
<div>
2015-09-24 14:30:16 +02:00
{% block content %}{% endblock %}
2015-09-24 07:44:49 +02:00
</div>
</body>
</html>