Weitere Optimierungen für den Druck
parent
4cb16c5747
commit
7ade027179
|
|
@ -48,7 +48,7 @@ mixin headline_template(title)
|
|||
td(style="padding: 0px;")
|
||||
b
|
||||
a(href="/") BibelWissen.Halieus.DE
|
||||
td(style="padding: 0px; text-align: right;")
|
||||
td(style="padding: 0px; text-align: right;").hide_on_print
|
||||
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 Einführung in das Evangelium nach Markus
|
||||
|
|
@ -56,7 +56,7 @@ mixin headline_template(title)
|
|||
tr
|
||||
td(style="padding: 0px; font-size: 130%; font-variant: small-caps;")
|
||||
b !{title}
|
||||
td(style="padding: 0px; text-align: right;")
|
||||
td.hide_on_print(style="padding: 0px; text-align: right;")
|
||||
+headline_presentation_hamburger
|
||||
|
||||
+headline_presentation_script
|
||||
|
|
@ -88,7 +88,7 @@ mixin navigation_auto_template(gliederung, current, bgcolor)
|
|||
li.breadcrumb-item
|
||||
a(href=fullpath) !{item.name}
|
||||
if(subs.length > 1)
|
||||
span.small.dropdown
|
||||
span.small.dropdown.hide_on_print
|
||||
a.dropdown-toggle(data-toggle="dropdown", href="#", style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;")
|
||||
.dropdown-menu
|
||||
each sub in subs
|
||||
|
|
@ -102,7 +102,7 @@ mixin navigation_auto_template(gliederung, current, bgcolor)
|
|||
li.breadcrumb-item
|
||||
.h3(style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;") !{item.name}
|
||||
if(subs.length > 1)
|
||||
span.small.dropdown
|
||||
span.small.dropdown.hide_on_print
|
||||
a.dropdown-toggle(data-toggle="dropdown", href="#", style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;")
|
||||
.dropdown-menu
|
||||
each sub in subs
|
||||
|
|
@ -115,8 +115,8 @@ mixin navigation_auto_template(gliederung, current, bgcolor)
|
|||
- subs = item.subs;
|
||||
|
||||
mixin bottom_autonav_template(gliederung, current, hrcolor)
|
||||
hr(style="margin-top: 2rem; border-top-width: 7px; border-top-color: "+hrcolor+";")
|
||||
ul.nav.nav-fill.nav-pills(style="padding-left: 1rem; padding-right: 1rem;")
|
||||
hr.hide_on_print(style="margin-top: 2rem; border-top-width: 7px; border-top-color: "+hrcolor+";")
|
||||
ul.hide_on_print.nav.nav-fill.nav-pills(style="padding-left: 1rem; padding-right: 1rem;")
|
||||
- var nr_items = current.length;
|
||||
if(nr_items === 0)
|
||||
li.nav-item
|
||||
|
|
@ -142,8 +142,8 @@ mixin bottom_autonav_template(gliederung, current, hrcolor)
|
|||
a.nav-link(href=my_fullpath) !{item.name}
|
||||
|
||||
if(nr_items > 1)
|
||||
hr(style="border-top-width: 5px; border-top-color: "+hrcolor+";")
|
||||
.small(style="margin-top: 3px;")
|
||||
hr.hide_on_print(style="border-top-width: 5px; border-top-color: "+hrcolor+";")
|
||||
.small.hide_on_print(style="margin-top: 3px;")
|
||||
ul.nav.nav-fill.nav-pills.pill-sub-1
|
||||
- fullpath = fullpath + "/" + current[0].id;
|
||||
each item in current[0].subs
|
||||
|
|
@ -154,3 +154,7 @@ mixin bottom_autonav_template(gliederung, current, hrcolor)
|
|||
else
|
||||
li.nav-item
|
||||
a.nav-link(href=my_fullpath) !{item.name}
|
||||
|
||||
hr(style="border-top-width: 2px; border-top-color: "+hrcolor+";")
|
||||
p.small(style="margin-left: 15px; margin-right: 15px;")
|
||||
i Geistiges Eigentum von Pfarrer Peter Fischer, Rödental
|
||||
|
|
|
|||
Loading…
Reference in New Issue