diff options
Diffstat (limited to 'templates/post.html')
-rw-r--r-- | templates/post.html | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/templates/post.html b/templates/post.html index 088b2f6..82250f8 100644 --- a/templates/post.html +++ b/templates/post.html @@ -4,14 +4,33 @@ <head> <meta charset="UTF-8"> - <title>{{ title }}</title> + <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> - <h1>{{ title }}</h1> - <h3>{{ date }}</h3> +<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> - {{ body|safe }} +</main> </body> </html> |