chaoswest.tv/templates/layout.html

47 lines
1.6 KiB
HTML
Raw Normal View History

2022-01-20 23:51:09 +01:00
<!doctype html>
{%- macro titlestring() -%}
{%- block title -%}
Welcome
{%- endblock -%}
{{ ' — chaoswest.tv' }}
{%- endmacro -%}
{%- macro descriptionstring() -%}
{%- block description -%}
2022-05-01 14:51:42 +02:00
Chaos-West TV
2022-01-20 23:51:09 +01:00
{%- endblock -%}
{{ ' — chaoswest.tv' }}
{%- endmacro -%}
<html lang="{{ this.alt }}">
<head>
<meta charset="utf-8">
2022-05-08 11:57:02 +02:00
<link rel="stylesheet" href="{{ "css/normalize.min.css" |asseturl }}">
<link rel="stylesheet" href="{{ "css/main.min.css" |asseturl }}">
2022-01-20 23:51:09 +01:00
<title>{{- titlestring() -}}</title>
<meta name="generator" content="lektor" />
<meta name="description" content="{{- descriptionstring() -}}">
2022-05-01 14:51:42 +02:00
<meta name="author" content="Chaos-West TV">
2022-01-20 23:51:09 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml">
<meta property="og:url" content="{{ this | url(external=true) }}">
<meta property="og:type" content="website">
<meta property="og:title" content="{{- titlestring() -}}">
<meta property="og:description" content="{{- descriptionstring() -}}">
</head>
<body>
2022-05-08 11:57:02 +02:00
<div class="container">
2022-05-01 14:51:42 +02:00
{%- include "blocks/header.html" -%}
{%- include "blocks/navigation.html" -%}
<main>
2022-01-20 23:51:09 +01:00
{%- block body -%}
{%- endblock %}
2022-05-01 14:51:42 +02:00
</main>
2022-01-20 23:51:09 +01:00
<footer>
<p>Letzte Änderung am {{ none | datetimeformat('YYYY-MM-dd') }}. Inhalte veröffentlich unter <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA 4.0</a> Lizenz, sofern nicht anders angegeben.</p>
<p>
<a href="/impressum">Impressum</a>
</p>
2022-01-20 23:51:09 +01:00
</footer>
2022-05-08 11:57:02 +02:00
</div>
2022-01-20 23:51:09 +01:00
</body>