html5-infobeamer-aalen-geek.../templates/html5infobeamer.html

62 lines
2.1 KiB
HTML
Raw Normal View History

2023-11-01 01:59:19 +01:00
<!DOCTYPE html>
2023-11-01 23:13:36 +01:00
<!-- (C) 2023 by L3D <l3d@c3woc.de> - MIT License -->
{% if alt %}
<html lang="{{ alt }}">
{% else %}
<html>
{% endif %}
2023-11-01 01:59:19 +01:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ this.title }}</title>
2023-11-01 17:51:02 +01:00
<meta name="description" content="{{ this.description | default('HTML5 InfoBeamer') }}">
2023-11-01 17:14:41 +01:00
<meta name="robots" content="noindex">
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml">
<meta name="author" content="L3D">
2023-11-01 01:59:19 +01:00
<link href="{{ '/static/fork-awesome/css/fork-awesome.min.css'|asseturl }}" rel="stylesheet" type="text/css">
2023-11-02 02:03:51 +01:00
{% if this.type == 'infobeamer' or this.type == 'infobeamer-with-music' %}
2023-11-02 02:59:42 +01:00
<link rel="stylesheet" href="{{ '/css/schedule.css'|asseturl }}" type="text/css">
2023-11-02 00:45:46 +01:00
{% elif this.type == 'bauchbinde' %}
2023-11-02 02:59:42 +01:00
<link rel="stylesheet" href="{{ '/css/speaker-info.css'|asseturl }}" type="text/css">
2023-11-02 00:45:46 +01:00
{% endif %}
2023-11-01 15:10:24 +01:00
<script src="/config.js"></script>
2023-11-01 01:59:19 +01:00
</head>
<body>
2023-11-02 02:03:51 +01:00
{% if this.type == 'infobeamer' or this.type == 'infobeamer-with-music' %}
2023-11-01 18:03:37 +01:00
<img class="header" src="{{ '/images/geekend_23.svg' | asseturl }}" />
2023-11-02 00:45:46 +01:00
{% endif %}
2023-11-01 02:49:29 +01:00
<main id="main">
</main>
<div id="clock"></div>
2023-11-02 02:03:51 +01:00
{% if this.type == 'infobeamer-with-music' %}
<footer class="music-info">
{% if this.music_title is defined %}
Musik:
<span class="music-track">{{ this.music_title }}</span>
{% endif %}
{% if this.music_artist is defined %}
von
<span class="music-artist">{{ this.music_artist }}</span>
{% endif %}
{% if this.music_licence is defined %}
Lizenz:
<span class="music-licence">
{{ this.music_licence }}
</span>
{% endif %}
{% if this.music_url is defined %}
Link:
<span class="music-link">
{{ this.music_url }}
</span>
{% endif %}
</footer>
{% endif %}
2023-11-01 01:59:19 +01:00
<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>
2023-11-01 17:14:41 +01:00
<script src="{{ this.schedule | asseturl }}"></script>
2023-11-01 01:59:19 +01:00
</body>
</html>