chaoswest.tv/templates/layout.html

44 lines
1.5 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>
2024-01-19 00:32:25 +01:00
Letztes update am {{ none|datetimeformat('YYYY-mm-dd', 'UTC') }} unter der <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA 4.0</a> Lizenz, sofern nicht anders angegeben. <a href="/impressum">Impressum</a>
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>