diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2022-12-25 19:31:44 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2022-12-25 19:33:26 +0000 |
commit | e77fbf2e971aca484b8826f9530041fd162b16d9 (patch) | |
tree | 1708af1c85f823f9709d4290e873106ab0d77205 /templates/post.html | |
parent | 53ef7f76f552b45a46208d6814c5ff39662ad013 (diff) | |
download | blog-e77fbf2e971aca484b8826f9530041fd162b16d9.tar.gz blog-e77fbf2e971aca484b8826f9530041fd162b16d9.tar.bz2 blog-e77fbf2e971aca484b8826f9530041fd162b16d9.zip |
Use style file from Bear blog by Herman Martinus
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> |