51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
{%- if metadata.title -%}
|
|
{%- set dash = " - " -%}
|
|
{%- set page_title = metadata.title -%}
|
|
{%- elseif title -%}
|
|
{%- set dash = " - " -%}
|
|
{%- set page_title = title -%}
|
|
{%- else -%}
|
|
{%- set dash = "" -%}
|
|
{%- set page_title = "" -%}
|
|
{%- endif %}
|
|
{% if metadata.description -%}
|
|
{%- set page_description = metadata.description -%}
|
|
{%- elseif description -%}
|
|
{%- set page_description = description -%}
|
|
{%- else -%}
|
|
{%- set page_description = "blog.robur.coop" -%}
|
|
{%- endif -%}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>
|
|
Robur's blog{{ dash }}{{ page_title }}
|
|
</title>
|
|
<meta name="description" content="{{ page_description }}">
|
|
<link type="text/css" rel="stylesheet" href="{{ root }}/css/hl.css">
|
|
<link type="text/css" rel="stylesheet" href="{{ root }}/css/style.css">
|
|
<script src="{{ root }}/js/hl.js"></script>
|
|
<link rel="alternate" type="application/rss+xml" href="{{ root }}/feed.xml" title="blog.robur.coop">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>blog.robur.coop</h1>
|
|
<blockquote>
|
|
The <strong>Robur</strong> cooperative blog.
|
|
</blockquote>
|
|
</header>
|
|
<main>
|
|
{%- autoescape false -%}
|
|
{{ body }}
|
|
{% endautoescape -%}
|
|
</main>
|
|
<footer>
|
|
<a href="https://github.com/xhtmlboi/yocaml">Powered by <strong>YOCaml</strong></a>
|
|
<br />
|
|
</footer>
|
|
<script>hljs.highlightAll();</script>
|
|
</body>
|
|
</html>
|