add basic lektor site layout

This commit is contained in:
L3D 2022-01-09 17:33:15 +01:00
parent 234a030d40
commit ff6a6cdc4a
Signed by: l3d
GPG key ID: CD08445BFF4313D1
4 changed files with 84 additions and 0 deletions

11
models/page.ini Normal file
View file

@ -0,0 +1,11 @@
[model]
name = Page
label = {{ this.title }}
[fields.title]
label = Title
type = string
[fields.body]
label = Body
type = markdown

52
templates/layout.html Normal file
View file

@ -0,0 +1,52 @@
<!doctype html>
{%- macro titlestring() -%}
{% block title %}Welcome{% endblock %} — winkekatze.tv
{%- endmacro -%}
{%- macro descriptionstring() -%}
{% block description %}Winkekatze Video Operation Center{% endblock %} — winkekatze.tv
{%- endmacro -%}
<html lang="{{ this.alt }}">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
<title>{{- titlestring() -}}</title>
<meta name="generator" content="lektor" />
<meta name="description" content="{{- descriptionstring() -}}">
<meta name="author" content="L3D">
<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>
<header>
<h1>winkekatze.tv</h1>
<nav>
<ul class="nav navbar-nav">
<li
{%- if this._path == '/' %} class="active"{%- endif -%}>
<a href="{{ '/'|url }}">Welcome</a>
</li>
{%- for href, title in [
['/projects', 'Projects'],
['/about', 'About']
] %}
<li
{%- if this.is_child_of(href) %} class="active"{%- endif -%}>
<a href="{{ href|url }}">{{ title }}</a>
</li>
{%- endfor %}
</ul>
</nav>
</header>
<div class="page">
{%- block body -%}
{%- endblock -%}
</div>
<footer>
&copy; Copyright 2022 by L3D under <a href="https://backwesen.de/voc/winkekatze.tv/src/branch/main/LICENCE">MIT License</a> | <a href="https://backwesen.de/voc/winkekatze.tv.git">Source Code</a>
</footer>
</body>

View file

@ -0,0 +1,15 @@
{% macro render_pagination(pagination) %}
<div class="pagination">
{% if pagination.has_prev %}
<a href="{{ pagination.prev|url }}">&laquo; Previous</a>
{% else %}
<span class="disabled">&laquo; Previous</span>
{% endif %}
| {{ pagination.page }} |
{% if pagination.has_next %}
<a href="{{ pagination.next|url }}">Next &raquo;</a>
{% else %}
<span class="disabled">Next &raquo;</span>
{% endif %}
</div>
{% endmacro %}

6
templates/page.html Normal file
View file

@ -0,0 +1,6 @@
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<h2>{{ this.title }}</h2>
{{ this.body }}
{% endblock %}