add basic lektor site layout
This commit is contained in:
parent
234a030d40
commit
ff6a6cdc4a
4 changed files with 84 additions and 0 deletions
11
models/page.ini
Normal file
11
models/page.ini
Normal 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
52
templates/layout.html
Normal 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>
|
||||
© 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>
|
15
templates/macros/pagination.html
Normal file
15
templates/macros/pagination.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
{% macro render_pagination(pagination) %}
|
||||
<div class="pagination">
|
||||
{% if pagination.has_prev %}
|
||||
<a href="{{ pagination.prev|url }}">« Previous</a>
|
||||
{% else %}
|
||||
<span class="disabled">« Previous</span>
|
||||
{% endif %}
|
||||
| {{ pagination.page }} |
|
||||
{% if pagination.has_next %}
|
||||
<a href="{{ pagination.next|url }}">Next »</a>
|
||||
{% else %}
|
||||
<span class="disabled">Next »</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endmacro %}
|
6
templates/page.html
Normal file
6
templates/page.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block title %}{{ this.title }}{% endblock %}
|
||||
{% block body %}
|
||||
<h2>{{ this.title }}</h2>
|
||||
{{ this.body }}
|
||||
{% endblock %}
|
Loading…
Reference in a new issue