summaryrefslogtreecommitdiff
path: root/templates/post.html
blob: 088b2f64b391cd17ae2d72de40f5873057844e64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>

<html>

<head>
    <meta charset="UTF-8">
    <title>{{ title }}</title>
</head>

<body>
    <h1>{{ title }}</h1>
    <h3>{{ date }}</h3>

    {{ body|safe }}
</body>

</html>