2024-04-18 04:05:38 +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>{{ 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 %}
|
2024-04-19 22:41:14 +03:00
|
|
|
{% if markdown_access %}
|
|
|
|
- <a href="/posts/{{ meta.name }}.md">view raw</a>
|
|
|
|
{% endif %}
|
2024-04-18 04:05:38 +03:00
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|