Update lektor functionallity
This commit is contained in:
parent
4c324e9072
commit
b3872e0149
6 changed files with 24 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
||||||
_template: config.js
|
_template: config.js
|
||||||
---
|
---
|
||||||
_discoverable: yes
|
_discoverable: no
|
||||||
---
|
---
|
||||||
_hidden: no
|
_hidden: no
|
||||||
|
|
|
@ -4,9 +4,8 @@ title: VOC Info Aalen
|
||||||
---
|
---
|
||||||
body:
|
body:
|
||||||
|
|
||||||
# HTML5 InfoBeamer
|
|
||||||
|
|
||||||
Hier findet ihr mehrere Endpunkte des HTML5 Info-Beamer.
|
Hier findet ihr mehrere Endpunkte des HTML5 Info-Beamer.
|
||||||
|
Der Infobeamer ist Optimiert auf eine Auflösung von ``1920x1080px`` zum Beispiel zum Einfügen im OBS als BrowserSource.
|
||||||
|
|
||||||
Quelle: [git.l3d.ch](https://git.l3d.ch/voc/html5-infobeamer-aalen-geekend-23.git).
|
Quelle: [git.l3d.ch](https://git.l3d.ch/voc/html5-infobeamer-aalen-geekend-23.git).
|
||||||
*Lizenz: [MIT](https://git.l3d.ch/voc/html5-infobeamer-aalen-geekend-23/raw/branch/main/LICENSE)*
|
*Lizenz: [MIT](https://git.l3d.ch/voc/html5-infobeamer-aalen-geekend-23/raw/branch/main/LICENSE)*
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
_template: sitemap.xml
|
_template: sitemap.xml
|
||||||
---
|
---
|
||||||
_model: none
|
_model:
|
||||||
|
|
||||||
|
none
|
||||||
|
_discoverable: no
|
||||||
|
---
|
||||||
_discoverable: no
|
_discoverable: no
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
_model: html5infobeamer
|
_model: html5infobeamer
|
||||||
---
|
---
|
||||||
title: Overview Schedule Aalen Geekend 23
|
title: Bauchbinde aktueller Speaker "Vortragsraum"
|
||||||
---
|
---
|
||||||
body: Die Speaker Bauchbinden der jetzt aktiven Talk
|
body: Die Speaker Bauchbinden der jetzt aktiven Talk
|
||||||
---
|
---
|
||||||
|
|
|
@ -18,18 +18,20 @@
|
||||||
<body>
|
<body>
|
||||||
<h1 class="header">{{ this.title }}</h1>
|
<h1 class="header">{{ this.title }}</h1>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{ this.body }}
|
<h2>Infobeamer Endpunkte:</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
{% set root = site.get('/') %}
|
||||||
|
{% for child in root.children recursive %}
|
||||||
|
{% if this._path != child._path %}
|
||||||
|
{% if not child.hide_from_global_index %}
|
||||||
<li class="infopointitem">
|
<li class="infopointitem">
|
||||||
<span class="fa fa-hand-o-right bullet"></span><b>HTML5 InfoBeamer:</b><a class="infopoint" href="/schedule/">/schedule/</a>
|
<span class="fa fa-hand-o-right bullet"></span><b>{{ child.title }}:</b><a class="infopoint" href="{{ child|url }}">{{ child|url }}</a>
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<span class="fa fa-hand-o-right bullet"></span><b>HTML5 InfoBeamer "Vortragssaal":</b><a class="infopoint" href="/schedule-vortragssaal/">/schedule-vortragssaal/</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<span class="fa fa-hand-o-right bullet"></span><b>HTML5 Bauchbinden aktueller Speaker "Vortragssaal":</b><a class="infopoint" href="/speaker-info-vortragssaal/">/speaker-info-vortragssaal/</a>
|
|
||||||
</li>
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
{{ this.body }}
|
||||||
<footer>
|
<footer>
|
||||||
<small>© {{ none|datetimeformat('YYYY') }} L3D <a href="https://winkekatze.tv">winkekatze.tv</a></small>
|
<small>© {{ none|datetimeformat('YYYY') }} L3D <a href="https://winkekatze.tv">winkekatze.tv</a></small>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -9,8 +9,13 @@ url = https://aalen-geekend-23.winkekatze.tv/
|
||||||
name = winekaktze
|
name = winekaktze
|
||||||
enabled = yes
|
enabled = yes
|
||||||
default = yes
|
default = yes
|
||||||
locale = en_EN
|
locale = de_DE
|
||||||
target = rsync://winkekatze@aalen-geekend-23.winkekatze.tv/srv/www/aalen-geekend-23.winkekatze.tv/
|
target = rsync://winkekatze@aalen-geekend-23.winkekatze.tv/srv/www/aalen-geekend-23.winkekatze.tv/
|
||||||
|
|
||||||
|
[alternatives.de]
|
||||||
|
name = Deutsch
|
||||||
|
primary = yes
|
||||||
|
locale = de_DE
|
||||||
|
|
||||||
[packages]
|
[packages]
|
||||||
lektor-scss = 1.4.2
|
lektor-scss = 1.4.2
|
||||||
|
|
Loading…
Reference in a new issue