blob: 6cfdcb44198254d9f3482e47347f5caea691c027 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html lang="en">
<head>
{% include "head.html" %}
<meta property="og:title" content="{{ owner }}’s web index">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ this_url }}">
<title>shrt</title>
</head>
<body>
<div id="Body">
{% include "nav.html" %}
<div>{{ items }}</div>
{% include "footer.html" %}
</div>
</body>
</html>
|