69 lines
2.9 KiB
HTML
69 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
||
<!-- (C) 2023 by L3D <l3d@c3woc.de> - MIT License -->
|
||
{% if alt %}
|
||
<html lang="{{ alt }}">
|
||
{% else %}
|
||
<html>
|
||
{% endif %}
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
<title>{{ this.title }}</title>
|
||
<link href="{{ '/static/fork-awesome/css/fork-awesome.min.css'|asseturl }}" rel="stylesheet" type="text/css">
|
||
<meta name="robots" content="noindex">
|
||
<link href="{{ '/css/root_index.css'|asseturl }}" rel="stylesheet" type="text/css">
|
||
<script src="/config.js"></script>
|
||
<meta name="author" content="L3D">
|
||
</head>
|
||
<body>
|
||
<h1 class="header">{{ this.title }}</h1>
|
||
<div class="content">
|
||
<h2>Infobeamer Endpunkte:</h2>
|
||
<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">
|
||
<span class="fa fa-hand-o-right bullet"></span><b>{{ child.title }}:</b><a class="infopoint" href="{{ child|url }}">{{ child|url }}</a>
|
||
</li>
|
||
{% endif %}
|
||
{% endif %}
|
||
{% endfor %}
|
||
</ul>
|
||
{{ this.body }}
|
||
<footer>
|
||
<small>© {{ none|datetimeformat('YYYY') }} L3D <a href="https://winkekatze.tv">winkekatze.tv</a></small>
|
||
</footer>
|
||
</div>
|
||
<script src="{{ '/js/luxon/luxon.min.js' | asseturl }}"></script>
|
||
<script src="{{ '/js/preact/preact.min.js' | asseturl }}"></script>
|
||
<script src="{{ '/js/htm/htm.js' | asseturl }}"></script>
|
||
</body>
|
||
</html>
|
||
<!-- __ _____ _
|
||
/ \__..-""" ;-.",'/
|
||
( / \_ `.' / `.
|
||
| | ) `;. ,' / \ \
|
||
( '. /___/_j_ / ) | )
|
||
'\ / __\``::'/__' |
|
||
|\_ ( / .-| |-.| `-,|
|
||
.| ( \ ( (W♥| \♥)j '
|
||
..-"""-, .|' ', \_\_`_| ``-.
|
||
.-` ..::. `, |, ._:7 \__/
|
||
,' .:::'':::. \ |:'. \ ______.-'
|
||
.' .::' ':: :._______| \ \ `"7 /
|
||
/ ./:' ,.-'''>-' ' `.`.._/ (
|
||
- :/:' | / ╱▔╲╱▔╲ `. `._/ \
|
||
| :::' .' | ▏WAF ▕ `-_./ |
|
||
.' ||| .' | ╲ FEL╱ |
|
||
| ||| | | ╲ ╱ |
|
||
| ':|| '. / \ ╲╱ / \__/
|
||
| . ||| |.-"' | /-,_______\ \
|
||
|/| ||| | _/ / | |\ \
|
||
` ) '::. '. / / | | `-., \
|
||
\ ||| | | | | | / )
|
||
`. ||| | _/| | | | ( |
|
||
`::|| | | | | | \ |
|
||
`-._| | \ | \ `.___/
|
||
\_______) \_______) C3WOC-->
|