62 lines
2.1 KiB
Plaintext
62 lines
2.1 KiB
Plaintext
mixin footnote(content)
|
|
span.footnote(data-toggle="tooltip", title=content)
|
|
|
|
mixin symbol(s)
|
|
span.oi(class="oi-"+s)
|
|
span
|
|
|
|
|
|
mixin headline
|
|
div(style="margin-top: 15px; padding-left: 1rem; padding-right: 1rem;")
|
|
table(style="font-size: 80%; font-variant: small-caps; margin-bottom: 0px; width: 100%;")
|
|
tr
|
|
td(style="padding: 0px;")
|
|
b
|
|
a(href="/eko/") BibelWissen.Halieus.DE / ErstKommunionVorbereitung
|
|
td(style="padding: 0px; text-align: right;")
|
|
a(href="http://www.halieus.de/impressum_datenschutz.html" target="_blank") Impressum & Datenschutzerklärung
|
|
p(style="font-size: 130%; font-variant: small-caps; margin-bottom: 0px;")
|
|
b ErstKommunionVorbereitung in Rödental und Neustadt bei Coburg
|
|
ol.breadcrumb(onclick="show_all_slides();", style="margin-top: .5rem; border-radius: 0;")
|
|
block
|
|
|
|
mixin headline_item_start
|
|
li.breadcrumb-item
|
|
a(href=pathoffset+"/") Start
|
|
|
|
mixin headline_item_active
|
|
li.breadcrumb-item
|
|
.h3(style="margin-bottom: 0px; color: #0e4f88; width: 100%;")
|
|
block
|
|
|
|
mixin bottom_nav_item(active, short, href, name)
|
|
if(active===short)
|
|
li.nav-item
|
|
a.nav-link.active !{name}
|
|
else
|
|
li.nav-item
|
|
a.nav-link(href=href) !{name}
|
|
|
|
mixin bottom_nav(active)
|
|
hr(style="margin-top: 2rem; border-top-width: 7px; border-top-color: #a4d0fd;")
|
|
ul.nav.nav-fill.nav-pills(style="padding-left: 1rem; padding-right: 1rem;")
|
|
+bottom_nav_item(active, "start", pathoffset+"/", "Start")
|
|
+bottom_nav_item(active, "eucharistie", pathoffset + "/02_eucharistie", "Eucharistie")
|
|
|
|
mixin bottom_subnav(active, short, href, name)
|
|
if(active===short)
|
|
li.nav-item
|
|
a.nav-link.active !{name}
|
|
else
|
|
li.nav-item
|
|
a.nav-link(href=href) !{name}
|
|
|
|
mixin bottom_infoabend(active)
|
|
+bottom_nav("infoabend")
|
|
hr(style="border-top-width: 5px; border-top-color: #a4d0fd")
|
|
.small(style="margin-top: 3px;")
|
|
ul.nav.nav-fill.nav-pills.pill-sub-1
|
|
+bottom_subnav(active, "willkommen", pathoffset+"/00_infoabend/00_willkommen", "Willkommen")
|
|
+bottom_subnav(active, "infoabend", pathoffset+"/00_infoabend/01_infoabend", "InfoAbend")
|
|
|