winkekatze.tv/templates/layout.html

52 lines
1.8 KiB
HTML
Raw Permalink Normal View History

2022-01-09 17:33:15 +01:00
<!doctype html>
2024-07-23 14:28:28 +02:00
{%- macro titlestring() %}
{% block title %}
Welcome
{% endblock %}
— winkekatze.tv
{% endmacro %}
{% macro descriptionstring() %}
{% block description %}
Winkekatze Video Operation Center
{% endblock -%}
— winkekatze.tv
{% endmacro %}
{% macro cssfile() %}{% block scss %}css/main.min.css{% endblock %}{% endmacro %}
2022-01-09 17:33:15 +01:00
<html lang="{{ this.alt }}">
<head>
2022-01-26 02:29:00 +01:00
<meta charset="utf-8" />
<link rel="stylesheet" href="{{ cssfile()|asseturl }}" />
2024-07-23 14:28:28 +02:00
<title>{{ titlestring() }}</title>
2022-01-09 17:33:15 +01:00
<meta name="generator" content="lektor" />
2024-07-23 14:28:28 +02:00
<meta name="description" content="{{ descriptionstring() }}" />
2022-01-26 02:29:00 +01:00
<meta name="author" content="L3D" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-10-24 23:48:49 +02:00
<link rel="sitemap" type="application/xml" title="Sitemap" href="{{ '/sitemap.xml' | url(external=true) }}" />
2022-01-26 02:29:00 +01:00
<meta property="og:url" content="{{ this | url(external=true) }}" />
<meta property="og:type" content="website" />
2024-07-23 14:28:28 +02:00
<meta property="og:title" content="{{ titlestring() }}" />
<meta property="og:description" content="{{ descriptionstring() }}" />
2022-01-09 17:33:15 +01:00
</head>
<body>
<header>
2022-01-23 18:11:54 +01:00
<h1 id="top" class="sitetitle"><a href="/">
2022-01-18 04:05:22 +01:00
{%- block sitetitle -%}
winkekatze.tv
{%- endblock -%}
2022-01-23 18:11:54 +01:00
</a></h1>
2022-01-21 03:59:34 +01:00
{%- include "blocks/navigation.html" -%}
2022-01-09 17:33:15 +01:00
</header>
<div class="
{%- block class -%}
page
{%- endblock -%}">
2022-01-09 17:33:15 +01:00
{%- block body -%}
<p>Hello World</p>
{%- endblock %}
2022-01-09 17:33:15 +01:00
</div>
2024-07-23 14:28:28 +02:00
<footer>
&copy; Copyright {{ none|datetimeformat('YYYY') }} by L3D under <a href="https://git.l3d.ch/voc/winkekatze.tv/src/branch/main/LICENCE">MIT License</a> | Source Code: <a href="https://git.l3d.ch/voc/winkekatze.tv.git">gitea</a> and <a href="https://github.com/winkekatze/winkekatze.tv.git">GitHub</a>
2022-01-09 17:33:15 +01:00
</footer>
</body>