36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="{{ title }}" />
|
|
<meta property="og:title" content="{{ title }}" />
|
|
<meta property="og:description" content="{{ description }}" />
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>{{ title }}</h1>
|
|
<p>{{ description }}</p>
|
|
<h2>posts</h2>
|
|
<!-- prettier-ignore -->
|
|
<div>
|
|
{% for post in posts %}
|
|
<p>
|
|
<a href="/posts/{{ post.name }}"><b>{{ post.title }}</b></a>
|
|
<span class="post-author">- by {{ post.author }}</span>
|
|
<br />
|
|
{{ post.description }}<br />
|
|
{% match post.created_at %} {% when Some(created_at) %}
|
|
written: {{ created_at|date }}<br />
|
|
{% when None %} {% endmatch %}
|
|
{% match post.modified_at %} {% when Some(modified_at) %}
|
|
last modified: {{ modified_at|date }}
|
|
{% when None %} {% endmatch %}
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|