2024-05-01 23:12:52 +03:00
|
|
|
{%- import "macros.askama" as macros -%}
|
2024-05-02 20:17:46 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="description" content="{{ meta.title }}" />
|
|
|
|
<meta property="og:title" content="{{ meta.title }}" />
|
|
|
|
<meta property="og:description" content="{{ meta.description }}" />
|
|
|
|
{% match meta.icon %} {% when Some with (url) %}
|
|
|
|
<meta property="og:image" content="{{ url }}" />
|
|
|
|
<link rel="shortcut icon" href="{{ url }}" />
|
|
|
|
{% when None %} {% endmatch %}
|
|
|
|
<title>{{ meta.title }}</title>
|
|
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
|
|
<link rel="stylesheet" href="/static/post.css" />
|
|
|
|
</head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<h1 class="post-title">
|
|
|
|
{{ meta.title }}
|
|
|
|
<span class="post-author">- by {{ meta.author }}</span>
|
|
|
|
</h1>
|
|
|
|
<p class="post-desc">{{ meta.description }}</p>
|
|
|
|
<div class="" post>
|
|
|
|
<!-- prettier-ignore -->
|
|
|
|
<div>
|
|
|
|
{% call macros::table(meta) %}
|
|
|
|
</div>
|
|
|
|
<a href="/posts/{{ meta.name }}">link</a><br />
|
|
|
|
<a href="/">back to home</a>
|
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
{{ rendered|escape("none") }}
|
|
|
|
</main>
|
|
|
|
<!-- prettier-ignore -->
|
|
|
|
<footer>
|
|
|
|
{% match rendered_in %}
|
|
|
|
{% when RenderStats::ParsedAndRendered(total, parsing, rendering) %}
|
|
|
|
<span class="tooltipped" title="parsing took {{ parsing|duration }}">parsed</span> and
|
|
|
|
<span class="tooltipped" title="rendering took {{ rendering|duration }}">rendered</span> in {{ total|duration }}
|
|
|
|
{% when RenderStats::Cached(total) %}
|
|
|
|
retrieved from cache in {{ total|duration }}
|
|
|
|
{% endmatch %}
|
|
|
|
{% if markdown_access %}
|
|
|
|
- <a href="/posts/{{ meta.name }}.md">view raw</a>
|
|
|
|
{% endif %}
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|