blob: 5c4fef53ac35afd84c3a67f6a9476ae271fb7e14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="{{ title }}">
<title>{{ title }} | blog.ilvokhin.com</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
</head>
<body class="post">
<header>
<a class="title" href="/">
<h1>blog.ilvokhin.com</h1>
</a>
</header>
<main>
<center>
<h1>{{ title }}</h1>
<p><i><time datetime="{{ date }}" pubdate>
{{ date }}
</time></i></p>
</center>
<content>
{{ content|safe }}
</content>
</main>
</body>
</html>
|