From e0acc0b7877a48f8add10515ac89643b2ec96293 Mon Sep 17 00:00:00 2001 From: horus Date: Mon, 15 Mar 2021 22:38:58 +0100 Subject: Inline page into website --- index.html | 160 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 160 insertions(+) create mode 100644 index.html (limited to 'index.html') diff --git a/index.html b/index.html new file mode 100644 index 0000000..a060ad4 --- /dev/null +++ b/index.html @@ -0,0 +1,160 @@ +{% extends "snippets/layout.html" %} + +{% block title "Beats per Minute | Maximilian Möhring" %} + +{% block css %} + .main { + font-size: inherit !important; + } + .jumbotron { + background-color: inherit !important; + border: 1px solid grey; + } +{% endblock %} + +{% block main %} +
+ +
+
+

Hier klicken um die BPMs zu zählen:

+ Ist das Lied tanzbar? Was kann man dazu tanzen? +
+

0 BPM

+ +
+
+
+
+
+
+
+ + +
+{% set type = "" %} +{% for dance in dances %} + {% if dance.type != type %} + {% set type = dance.type %} +

{{ type|capitalize }}

+ {% endif %} + +
+

{{ dance.name }}

+ {{ dance.minBarspm }} bis {{ dance.maxBarspm }} Takte pM +
+ {{ dance.minBpm }} bis {{ dance.maxBpm }} BpM +
+ {{ dance.bar }} Takt +
+ +{% endfor %} +
+
+ + +{% endblock %} -- cgit v1.2.3