crablog/content/templates/blog.html

26 lines
881 B
HTML
Raw Normal View History

2020-10-26 12:19:44 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2020-10-26 12:41:58 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-10-26 12:19:44 +01:00
<title>mtrx' blog</title>
<link rel="stylesheet" href="/static/css/blog.css">
<link rel="shortcut icon" type="image/jpg" href="/static/favicon.ico"/>
</head>
<body>
<h1><a href="/blog" class="post-link" style="text-decoration:none;color:black;">mtrx' blog</a></h1>
<ul>
{% for post in posts %}
<article>
<a href="/blog/id/{{ post.id }}" class="post-link">[link]</a>
<div class="post-content">
<h2 class="post-title">{{ post.title }}</h2>
<sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub>
2020-10-26 12:19:44 +01:00
<p class="post-body">{{ post.body }}</p>
</div>
</article>
{% endfor %}
</ul>
</body>
</html>