blob: 96f7f9d09d844b334fea815ad0d61e6244b17b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!doctype html>
<html lang="en">
<head>
<link rel='stylesheet' href="{{ prefix }}styles/style.css">
<title>{{ title }}</title>
</head>
<body>
<div id='wrapper'>
<div id='content'>
{% block content %}
{% endblock %}
</div>
</div>
</body>
</html>
|