Compare commits
3 Commits
c177813a25
...
596bdb5451
| Author | SHA1 | Date |
|---|---|---|
|
|
596bdb5451 | |
|
|
48bfd9b6e6 | |
|
|
c9477ac959 |
|
|
@ -118,5 +118,13 @@
|
||||||
background-color: #3bb3c3;
|
background-color: #3bb3c3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card-body.gliederung > p {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bibelstelle.text-muted {
|
||||||
|
color: #505050 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* #b8dc7c #85c226 #7ac49f #b6ddc8 #99ae6b #3c746b #bf9f62 #70614e */
|
/* #b8dc7c #85c226 #7ac49f #b6ddc8 #99ae6b #3c746b #bf9f62 #70614e */
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,110 @@ var router = express.Router();
|
||||||
|
|
||||||
var pathoffset = 'nt/ev/lk/';
|
var pathoffset = 'nt/ev/lk/';
|
||||||
|
|
||||||
|
|
||||||
|
var _gliederung =
|
||||||
|
[
|
||||||
|
{
|
||||||
|
id : "einfuehrung",
|
||||||
|
name: "Einführung",
|
||||||
|
subs: [
|
||||||
|
{
|
||||||
|
id : "verfasser",
|
||||||
|
name: "Verfasser",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "quellen",
|
||||||
|
name: "Quellen",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "prolog",
|
||||||
|
name: "Der Verfasser über sein Werk",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "aufbau",
|
||||||
|
name: "Aufbau",
|
||||||
|
subs: []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "adv_weihn_jkr3-7",
|
||||||
|
name: "Advent, Weihnachten, Jahreskreis 3 – 7",
|
||||||
|
subs: [
|
||||||
|
{
|
||||||
|
id : "index",
|
||||||
|
name: "Überblick",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "gliederung",
|
||||||
|
name: "Gliederung",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "johdt",
|
||||||
|
name: "Johannes der Täufer",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "weihnachten",
|
||||||
|
name: "<q>Weihnachten</q>",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "antritt",
|
||||||
|
name: "Die Antrittspredigt Jesu",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "fischfang",
|
||||||
|
name: "Reicher Fischfang/<q>Berufung</q> des Petrus",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "feldrede",
|
||||||
|
name: "Die Rede am Fuß des Berges (<q>Feldrede</q>)",
|
||||||
|
subs: []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "fz_oz_jkr12-17",
|
||||||
|
name: "Fastenzeit, Osterzeit, Jahreskreis 12 – 17",
|
||||||
|
subs: [
|
||||||
|
{
|
||||||
|
id : "index",
|
||||||
|
name: "Überblick",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "gliederung",
|
||||||
|
name: "Gliederung",
|
||||||
|
subs: []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "jkr18-34",
|
||||||
|
name: "Jahreskreis 18 – 34",
|
||||||
|
subs: [
|
||||||
|
{
|
||||||
|
id : "index",
|
||||||
|
name: "Überblick",
|
||||||
|
subs: []
|
||||||
|
}/*,
|
||||||
|
{
|
||||||
|
id : "literatur",
|
||||||
|
name: "Ausgewählte Literatur",
|
||||||
|
subs: []
|
||||||
|
}*/
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
/* GET home page. */
|
/* GET home page. */
|
||||||
|
|
||||||
var _locals = { pathoffset : "/nt/ev/lk" };
|
var _locals = { pathoffset : "/nt/ev/lk" };
|
||||||
|
|
@ -17,6 +121,47 @@ function get_locals(req) {
|
||||||
}
|
}
|
||||||
|
|
||||||
router.get('/', function(req, res, next) {
|
router.get('/', function(req, res, next) {
|
||||||
|
var params = get_locals(req);
|
||||||
|
params.gliederung = _gliederung;
|
||||||
|
params.current = [];
|
||||||
|
res.render(pathoffset+'index', get_locals(req));
|
||||||
|
});
|
||||||
|
|
||||||
|
router.get('/:layer1', function(req, res, next) {
|
||||||
|
var layer1 = _gliederung.find(elem => elem.id === req.params.layer1);
|
||||||
|
console.log(layer1);
|
||||||
|
|
||||||
|
if(layer1.subs.length === 0)
|
||||||
|
console.log('ERROR layer1.subs.length === 0');
|
||||||
|
var index = layer1.subs[0];
|
||||||
|
|
||||||
|
var params = get_locals(req);
|
||||||
|
params.gliederung = _gliederung;
|
||||||
|
params.current = [];
|
||||||
|
params.current.push(layer1);
|
||||||
|
params.current.push(index);
|
||||||
|
console.log(params);
|
||||||
|
res.render(pathoffset + req.params.layer1+"/"+index.id, params);
|
||||||
|
});
|
||||||
|
|
||||||
|
router.get('/:layer1/:layer2', function(req, res, next) {
|
||||||
|
var layer1 = _gliederung.find(elem => elem.id === req.params.layer1);
|
||||||
|
console.log(layer1);
|
||||||
|
|
||||||
|
var layer2 = layer1.subs.find(elem => elem.id === req.params.layer2);
|
||||||
|
console.log(layer2);
|
||||||
|
|
||||||
|
var params = get_locals(req);
|
||||||
|
params.gliederung = _gliederung;
|
||||||
|
params.current = [];
|
||||||
|
params.current.push(layer1);
|
||||||
|
params.current.push(layer2);
|
||||||
|
console.log(params);
|
||||||
|
res.render(pathoffset + req.params.layer1+"/"+layer2.id, params);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
/*router.get('/', function(req, res, next) {
|
||||||
res.render(pathoffset+'index', get_locals(req));
|
res.render(pathoffset+'index', get_locals(req));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -47,7 +192,7 @@ router.get('/jkr18-34', function(req,res,next) {
|
||||||
router.get('/fz_oz_jkr12-17/:target', function(req,res,next) {
|
router.get('/fz_oz_jkr12-17/:target', function(req,res,next) {
|
||||||
res.render(pathoffset+'jkr18-34/' + req.params.target, get_locals(req));
|
res.render(pathoffset+'jkr18-34/' + req.params.target, get_locals(req));
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
module.exports = router;
|
module.exports = router;
|
||||||
|
|
|
||||||
|
|
@ -95,6 +95,113 @@ var _gliederung =
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id : "anfang",
|
||||||
|
name: "Anfang des Evangeliums Jesu Christi",
|
||||||
|
subs: [
|
||||||
|
{
|
||||||
|
id : "propheten",
|
||||||
|
name: "Durch Propheten im Voraus verheißen in heiligen Schriften",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "eingesetzt",
|
||||||
|
name: "Dem Geist der Heiligkeit nach eingesetzt als Sohn Gottes in Macht",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "gestorben",
|
||||||
|
name: "Gestorben für die Sünde",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "leben",
|
||||||
|
name: "Jesus lebt für Gott: Das Reich Gottes ist zum Greifen nahe",
|
||||||
|
subs: []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "getauft",
|
||||||
|
name: "Getauft auf Jesu Tod",
|
||||||
|
subs: [
|
||||||
|
{
|
||||||
|
id : "mir_nach",
|
||||||
|
name: "<q>Auf, mir nach!</q> – Die Berufung der ersten Jünger",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "verderben",
|
||||||
|
name: "Gekommen, um Satan/die Dämonen ins Verderben zu stürzen",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "aufgerichtet",
|
||||||
|
name: "Aufgerichtet zum Dienst",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "wer_er_ist",
|
||||||
|
name: "Die Dämonen wussten, wer er war ...",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "aufbruch",
|
||||||
|
name: "Angebrochenes Gottesreich → Aufbruch zur Verkündigung",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "reinigen",
|
||||||
|
name: "<q>Ich will es, werde rein</q>",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "mitbegraben",
|
||||||
|
name: "Wir wurden mit Christus begraben",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "neuheit",
|
||||||
|
name: "In der Neuheit des Lebens wandeln",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "arzt",
|
||||||
|
name: "Nicht die Gesunden bedürfen des Arztes ...",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "genommen",
|
||||||
|
name: "Der Bräutigam genommen",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "neu_anders",
|
||||||
|
name: "Neuer Wein in neue Schläuche",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "menschensohn",
|
||||||
|
name: "Der Menschensohn ist Herr ...",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "neue_schoepfung",
|
||||||
|
name: "... und seine Hand wurde wiederhergestellt",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "andrang",
|
||||||
|
name: "Viele Menschen folgten ihm",
|
||||||
|
subs: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : "zwoelf",
|
||||||
|
name: "Er setzte die Zwölf ein ... mit Vollmacht, Dämonen auszutreiben",
|
||||||
|
subs: []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -110,6 +217,7 @@ function get_locals(req) {
|
||||||
router.get('/', function(req, res, next) {
|
router.get('/', function(req, res, next) {
|
||||||
var params = get_locals(req);
|
var params = get_locals(req);
|
||||||
params.gliederung = _gliederung;
|
params.gliederung = _gliederung;
|
||||||
|
params.current = [];
|
||||||
res.render(pathoffset+'index', get_locals(req));
|
res.render(pathoffset+'index', get_locals(req));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,58 +63,84 @@ mixin headline_template(title)
|
||||||
|
|
||||||
mixin navigation_auto_template(gliederung, current, bgcolor)
|
mixin navigation_auto_template(gliederung, current, bgcolor)
|
||||||
ol.breadcrumb(onclick="show_all_slides();", style="margin-top: .5rem; border-radius: 0;")
|
ol.breadcrumb(onclick="show_all_slides();", style="margin-top: .5rem; border-radius: 0;")
|
||||||
li.breadcrumb-item
|
if(current.length === 0)
|
||||||
a(href=pathoffset+"/") Start
|
.h3(style="margin-bottom: 0px; color: #0e4f88; width: 100%;") Start
|
||||||
- var nr_items = current.length;
|
span.small.dropdown
|
||||||
- var cnt = 0;
|
a.dropdown-toggle(data-toggle="dropdown", href="#", style="margin-bottom: 0px; color: #0e4f88; width: 100%;")
|
||||||
- var subs = gliederung;
|
.dropdown-menu
|
||||||
- var fullpath = pathoffset;
|
a.dropdown-item(href="#")
|
||||||
- var old_fullpath;
|
b Start
|
||||||
each item in current
|
each sub in gliederung
|
||||||
- cnt = cnt+1;
|
a.dropdown-item(href=pathoffset + "/" + sub.id) !{sub.name}
|
||||||
- old_fullpath = fullpath;
|
else
|
||||||
- fullpath = fullpath + "/" + item.id;
|
li.breadcrumb-item
|
||||||
if(cnt != nr_items)
|
a(href=pathoffset+"/") Start
|
||||||
li.breadcrumb-item
|
- var nr_items = current.length;
|
||||||
a(href=fullpath) !{item.name}
|
- var cnt = 0;
|
||||||
if(subs.length > 1)
|
- var subs = gliederung;
|
||||||
each sub in subs
|
- var fullpath = pathoffset;
|
||||||
if(sub.id != item.id)
|
- var old_fullpath;
|
||||||
div #{sub.name}
|
each item in current
|
||||||
else
|
- cnt = cnt+1;
|
||||||
li.breadcrumb-item
|
- old_fullpath = fullpath;
|
||||||
.h3(style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;") !{item.name}
|
- fullpath = fullpath + "/" + item.id;
|
||||||
if(subs.length > 1)
|
if(cnt != nr_items)
|
||||||
span.small.dropdown
|
li.breadcrumb-item
|
||||||
a.dropdown-toggle(data-toggle="dropdown", href="#", style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;")
|
a(href=fullpath) !{item.name}
|
||||||
.dropdown-menu
|
if(subs.length > 1)
|
||||||
each sub in subs
|
span.small.dropdown
|
||||||
a.dropdown-item(href=old_fullpath + "/" + sub.id)
|
a.dropdown-toggle(data-toggle="dropdown", href="#", style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;")
|
||||||
if(sub.id === item.id)
|
.dropdown-menu
|
||||||
b !{sub.name}
|
each sub in subs
|
||||||
else
|
a.dropdown-item(href=old_fullpath + "/" + sub.id)
|
||||||
span !{sub.name}
|
if(sub.id === item.id)
|
||||||
|
b !{sub.name}
|
||||||
|
else
|
||||||
|
span !{sub.name}
|
||||||
|
|
||||||
- subs = item.subs;
|
else
|
||||||
|
li.breadcrumb-item
|
||||||
|
.h3(style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;") !{item.name}
|
||||||
|
if(subs.length > 1)
|
||||||
|
span.small.dropdown
|
||||||
|
a.dropdown-toggle(data-toggle="dropdown", href="#", style="margin-bottom: 0px; color: "+bgcolor+"; width: 100%;")
|
||||||
|
.dropdown-menu
|
||||||
|
each sub in subs
|
||||||
|
a.dropdown-item(href=old_fullpath + "/" + sub.id)
|
||||||
|
if(sub.id === item.id)
|
||||||
|
b !{sub.name}
|
||||||
|
else
|
||||||
|
span !{sub.name}
|
||||||
|
|
||||||
|
- subs = item.subs;
|
||||||
|
|
||||||
mixin bottom_autonav_template(gliederung, current, hrcolor)
|
mixin bottom_autonav_template(gliederung, current, hrcolor)
|
||||||
hr(style="margin-top: 2rem; border-top-width: 7px; border-top-color: "+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;")
|
ul.nav.nav-fill.nav-pills(style="padding-left: 1rem; padding-right: 1rem;")
|
||||||
li.nav-item
|
|
||||||
a.nav-link(href=pathoffset+"/") Start
|
|
||||||
- var nr_items = current.length;
|
- var nr_items = current.length;
|
||||||
- var fullpath = pathoffset;
|
if(nr_items === 0)
|
||||||
|
li.nav-item
|
||||||
|
a.nav-link.active(href="#") Start
|
||||||
|
each item in gliederung
|
||||||
|
- var my_fullpath = pathoffset + "/" + item.id;
|
||||||
|
|
||||||
each item in gliederung
|
|
||||||
- var my_fullpath = fullpath + "/" + item.id;
|
|
||||||
|
|
||||||
if(item.id === current[0].id)
|
|
||||||
li.nav-item
|
|
||||||
a.nav-link.active !{item.name}
|
|
||||||
else
|
|
||||||
li.nav-item
|
li.nav-item
|
||||||
a.nav-link(href=my_fullpath) !{item.name}
|
a.nav-link(href=my_fullpath) !{item.name}
|
||||||
|
|
||||||
|
else
|
||||||
|
li.nav-item
|
||||||
|
a.nav-link(href=pathoffset+"/") Start
|
||||||
|
- var fullpath = pathoffset;
|
||||||
|
each item in gliederung
|
||||||
|
- var my_fullpath = fullpath + "/" + item.id;
|
||||||
|
|
||||||
|
if(item.id === current[0].id)
|
||||||
|
li.nav-item
|
||||||
|
a.nav-link.active !{item.name}
|
||||||
|
else
|
||||||
|
li.nav-item
|
||||||
|
a.nav-link(href=my_fullpath) !{item.name}
|
||||||
|
|
||||||
if(nr_items > 1)
|
if(nr_items > 1)
|
||||||
hr(style="border-top-width: 5px; border-top-color: "+hrcolor+";")
|
hr(style="border-top-width: 5px; border-top-color: "+hrcolor+";")
|
||||||
.small(style="margin-top: 3px;")
|
.small(style="margin-top: 3px;")
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_adv_weihn_jkr3-7
|
|
||||||
+headline_item_active
|
|
||||||
span Die Antrittspredigt Jesu
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.slide.mb-3
|
.card.slide.mb-3
|
||||||
|
|
@ -484,13 +477,3 @@ block content
|
||||||
| Jesu Botschaft und er selbst werden (trotzdem) von den meisten Juden auch nach Ostern abgelehnt;
|
| Jesu Botschaft und er selbst werden (trotzdem) von den meisten Juden auch nach Ostern abgelehnt;
|
||||||
br
|
br
|
||||||
| dafür stoßen Heiden in relativ großer Zahl zur Gemeinschaft der Glaubenden dazu.
|
| dafür stoßen Heiden in relativ großer Zahl zur Gemeinschaft der Glaubenden dazu.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_adv_weihn_jkr3-7("antritt")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_adv_weihn_jkr3-7
|
|
||||||
+headline_item_active
|
|
||||||
span Die Rede am Fuß des Berges (<q>Feldrede</q>)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.slide
|
.slide
|
||||||
|
|
@ -1029,12 +1022,3 @@ block content
|
||||||
| aber auch die Sorge für und um Menschen, die selber gar nichts oder wenig geben können: Menschen mit körperlichen und
|
| aber auch die Sorge für und um Menschen, die selber gar nichts oder wenig geben können: Menschen mit körperlichen und
|
||||||
| geistigen Einschränkungen, alte Menschen, Arme etc.
|
| geistigen Einschränkungen, alte Menschen, Arme etc.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_adv_weihn_jkr3-7("feldrede")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_adv_weihn_jkr3-7
|
|
||||||
+headline_item_active
|
|
||||||
span Reicher Fischfang/<q>Berufung</q> des Petrus
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
|
|
@ -408,13 +402,3 @@ block content
|
||||||
p.mb-0
|
p.mb-0
|
||||||
| Grundlegend bleibt aber, dass Jesus nicht einzelne unverbunden berufen hat, sondern von Anfang an
|
| Grundlegend bleibt aber, dass Jesus nicht einzelne unverbunden berufen hat, sondern von Anfang an
|
||||||
| auf eine Gemeinschaft abgezielt hat, die durch die Verkündigung des Wortes Gottes und seine gläubige Aufnahme entsteht.
|
| auf eine Gemeinschaft abgezielt hat, die durch die Verkündigung des Wortes Gottes und seine gläubige Aufnahme entsteht.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_adv_weihn_jkr3-7("fischfang")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_adv_weihn_jkr3-7
|
|
||||||
+headline_item_active
|
|
||||||
span Gliederung
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.slide.bg-light.border-warning(style="border-width: .25rem")
|
.card.slide.bg-light.border-warning(style="border-width: .25rem")
|
||||||
|
|
@ -344,12 +337,3 @@ block content
|
||||||
| ...
|
| ...
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_adv_weihn_jkr3-7("gliederung")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_adv_weihn_jkr3-7
|
|
||||||
+headline_item_active
|
|
||||||
span Überblick
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
blockquote.blockquote.mb-5
|
blockquote.blockquote.mb-5
|
||||||
p.mb-0
|
p.mb-0
|
||||||
|
|
@ -51,12 +44,3 @@ block content
|
||||||
+ueberblick_tag("6. Sonntag im Jahreskreis", "17.02.19", "Lk 6,17.20-26", "Feldrede: Seligpreisungen und Wehklagen")
|
+ueberblick_tag("6. Sonntag im Jahreskreis", "17.02.19", "Lk 6,17.20-26", "Feldrede: Seligpreisungen und Wehklagen")
|
||||||
+ueberblick_tag("7. Sonntag im Jahreskreis", "24.02.19", "Lk 6,27-38", "Feldrede: Feindesliebe etc.")
|
+ueberblick_tag("7. Sonntag im Jahreskreis", "24.02.19", "Lk 6,27-38", "Feldrede: Feindesliebe etc.")
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_adv_weihn_jkr3-7("ueberblick")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_adv_weihn_jkr3-7
|
|
||||||
+headline_item_active
|
|
||||||
span Johannes der Täufer
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.row
|
.row
|
||||||
.col-6.pr-5
|
.col-6.pr-5
|
||||||
|
|
@ -627,12 +620,3 @@ block content
|
||||||
br
|
br
|
||||||
| Der Rückgriff auf die Ps 2,7 und Jes 42,1 erkennt darin die Erfüllung messianischer Verheißung.
|
| Der Rückgriff auf die Ps 2,7 und Jes 42,1 erkennt darin die Erfüllung messianischer Verheißung.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_adv_weihn_jkr3-7("johdt")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_adv_weihn_jkr3-7
|
|
||||||
+headline_item_active
|
|
||||||
span
|
|
||||||
q Weihnachten
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.slide.mb-3
|
.card.slide.mb-3
|
||||||
|
|
@ -413,14 +405,3 @@ block content
|
||||||
| Und doch ist das, was sie erlebt haben, nur eine <i>erste</i> Erfüllung; dass und wie Jesus <q>der Retter</q> ist,
|
| Und doch ist das, was sie erlebt haben, nur eine <i>erste</i> Erfüllung; dass und wie Jesus <q>der Retter</q> ist,
|
||||||
| das muss erst noch erzählt werden.
|
| das muss erst noch erzählt werden.
|
||||||
p.mb-0 So lädt diese Notiz auch zum Weiterlesen ein.
|
p.mb-0 So lädt diese Notiz auch zum Weiterlesen ein.
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_adv_weihn_jkr3-7("weihnachten")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_einfuehrung
|
|
||||||
+headline_item_active
|
|
||||||
span Aufbau
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.slide.bg-light.border-info
|
.card.slide.bg-light.border-info
|
||||||
|
|
@ -51,14 +44,3 @@ block content
|
||||||
| Lk 24,1-53
|
| Lk 24,1-53
|
||||||
p.card-text.mb-0
|
p.card-text.mb-0
|
||||||
| Auferweckung, Erscheinungen und Himmelfahrt jesu
|
| Auferweckung, Erscheinungen und Himmelfahrt jesu
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_einfuehrung("aufbau")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_einfuehrung
|
|
||||||
+headline_item_active
|
|
||||||
span Der Verfasser über sein Werk
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
p
|
p
|
||||||
|
|
@ -131,12 +125,3 @@ block content
|
||||||
li
|
li
|
||||||
| Wie <i>akribisch</i> beschäftige ich mit meiner eigenen, persönlichen Glaubensgeschichte? Warum ich was glaube? oder was ich warum nicht glaube?
|
| Wie <i>akribisch</i> beschäftige ich mit meiner eigenen, persönlichen Glaubensgeschichte? Warum ich was glaube? oder was ich warum nicht glaube?
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_einfuehrung("prolog")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_einfuehrung
|
|
||||||
+headline_item_active
|
|
||||||
span Quellen
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
p
|
p
|
||||||
| Gemäß der sog.
|
| Gemäß der sog.
|
||||||
|
|
@ -105,12 +98,3 @@ block content
|
||||||
| andererseits verbessert er den sprachlichen Stil.
|
| andererseits verbessert er den sprachlichen Stil.
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_einfuehrung("quellen")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_einfuehrung
|
|
||||||
+headline_item_active
|
|
||||||
span Verfasser
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
p
|
p
|
||||||
|
|
@ -43,12 +37,3 @@ block content
|
||||||
p
|
p
|
||||||
| Vom gleichen Autor stammt auch die Apostelgeschichte, wie die beiden Vorworte sowie Sprache, Stil und Theologie verraten.
|
| Vom gleichen Autor stammt auch die Apostelgeschichte, wie die beiden Vorworte sowie Sprache, Stil und Theologie verraten.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_einfuehrung("verfasser")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_fz_oz_jkr12-17
|
|
||||||
+headline_item_active
|
|
||||||
span Gliederung
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.slide.mt-3.bg-light.border-info
|
.card.slide.mt-3.bg-light.border-info
|
||||||
|
|
@ -264,13 +257,3 @@ block content
|
||||||
+symbol("arrow-right")
|
+symbol("arrow-right")
|
||||||
| Christi Himmelfahrt [24,46-54]
|
| Christi Himmelfahrt [24,46-54]
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_fz_oz_jkr12-17("gliederung")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_fz_oz_jkr12-17
|
|
||||||
+headline_item_active
|
|
||||||
span Überblick
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
blockquote.blockquote.mb-5
|
blockquote.blockquote.mb-5
|
||||||
p.mb-0
|
p.mb-0
|
||||||
|
|
@ -38,13 +31,3 @@ block content
|
||||||
+ueberblick_tag("15. Sonntag im Jahreskreis", "14.07.19", "Lk 10,25-37", "Wichtigstes Gebot I: Barmherziger Samariter")
|
+ueberblick_tag("15. Sonntag im Jahreskreis", "14.07.19", "Lk 10,25-37", "Wichtigstes Gebot I: Barmherziger Samariter")
|
||||||
+ueberblick_tag("16. Sonntag im Jahreskreis", "21.07.19", "Lk 10,38-42", "Wichtigstes Gebot II: Jesus bei Marta und Maria")
|
+ueberblick_tag("16. Sonntag im Jahreskreis", "21.07.19", "Lk 10,38-42", "Wichtigstes Gebot II: Jesus bei Marta und Maria")
|
||||||
+ueberblick_tag("17. Sonntag im Jahreskreis", "28.07.19", "Lk 11,1-13", "Wichtigstes Gebot III: Herrengebet")
|
+ueberblick_tag("17. Sonntag im Jahreskreis", "28.07.19", "Lk 11,1-13", "Wichtigstes Gebot III: Herrengebet")
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_fz_oz_jkr12-17("ueberblick")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,6 @@
|
||||||
extends layout
|
extends layout
|
||||||
include mixins
|
include mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_active
|
|
||||||
span Start
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
p
|
p
|
||||||
| Das Evangelium nach Lukas ist ein Werk der dritten christlichen Generation.
|
| Das Evangelium nach Lukas ist ein Werk der dritten christlichen Generation.
|
||||||
|
|
@ -17,6 +12,3 @@ block content
|
||||||
| Besonders das
|
| Besonders das
|
||||||
| soziale Zusammenleben und der Umgang mit den Sündern werden im Licht der
|
| soziale Zusammenleben und der Umgang mit den Sündern werden im Licht der
|
||||||
| Barmherzigkeit Gottes beleuchtet.
|
| Barmherzigkeit Gottes beleuchtet.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_nav("start")
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+headline_item_start
|
|
||||||
+headline_item_jkr18-34
|
|
||||||
+headline_item_active
|
|
||||||
span Überblick
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
blockquote.blockquote.mb-5
|
blockquote.blockquote.mb-5
|
||||||
p.mb-0
|
p.mb-0
|
||||||
|
|
@ -40,13 +33,3 @@ block content
|
||||||
+ueberblick_tag("32. Sonntag im Jahreskreis", "10.11.19", "Lk 20,27-38", "Frage nach der Auferstehung der Toten")
|
+ueberblick_tag("32. Sonntag im Jahreskreis", "10.11.19", "Lk 20,27-38", "Frage nach der Auferstehung der Toten")
|
||||||
+ueberblick_tag("33. Sonntag im Jahreskreis", "17.11.19", "Lk 21,5-19", "Von falschen Zeichen für das Ende der Welt; Mahnung zum Standhaftbleiben")
|
+ueberblick_tag("33. Sonntag im Jahreskreis", "17.11.19", "Lk 21,5-19", "Von falschen Zeichen für das Ende der Welt; Mahnung zum Standhaftbleiben")
|
||||||
+ueberblick_tag("34. Sonntag im Jahreskreis<br>Christkönig", "24.11.19", "Lk 23,35-43", "Heute noch wirst du mit mir im Paradies sein")
|
+ueberblick_tag("34. Sonntag im Jahreskreis<br>Christkönig", "24.11.19", "Lk 23,35-43", "Heute noch wirst du mit mir im Paradies sein")
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_jkr18-34("ueberblick")
|
|
||||||
|
|
||||||
script.
|
|
||||||
push_slide_stack('.slide')
|
|
||||||
|
|
||||||
$(function () {
|
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
|
||||||
})
|
|
||||||
|
|
|
||||||
|
|
@ -18,17 +18,28 @@ html(lang='de')
|
||||||
+cookies_css
|
+cookies_css
|
||||||
|
|
||||||
body
|
body
|
||||||
|
+headline
|
||||||
block headline
|
block headline
|
||||||
|
+navigation_auto(gliederung, current)
|
||||||
|
|
||||||
.container-fluid
|
.container-fluid
|
||||||
block content
|
block content
|
||||||
|
|
||||||
|
+bottom_autonav(gliederung, current)
|
||||||
block bottomnav
|
block bottomnav
|
||||||
|
|
||||||
div(style="height: 20px;")
|
div(style="height: 20px;")
|
||||||
|
|
||||||
script(src='/javascripts/bootstrap.min.js')
|
script(src='/javascripts/bootstrap.min.js')
|
||||||
|
|
||||||
|
script.
|
||||||
|
push_slide_stack('.slide')
|
||||||
|
|
||||||
|
$(function () {
|
||||||
|
$('[data-toggle="tooltip"]').tooltip()
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
+body_presentation_script
|
+body_presentation_script
|
||||||
|
|
||||||
+cookies_html
|
+cookies_html
|
||||||
|
|
|
||||||
|
|
@ -7,103 +7,12 @@ mixin symbol(s)
|
||||||
|
|
||||||
mixin headline
|
mixin headline
|
||||||
+headline_template("Mit dem Evangelium nach Lukas durch das Kirchenjahr")
|
+headline_template("Mit dem Evangelium nach Lukas durch das Kirchenjahr")
|
||||||
ol.breadcrumb(onclick="show_all_slides();", style="margin-top: .5rem; border-radius: 0;")
|
|
||||||
block
|
|
||||||
|
|
||||||
//- mixin headline_item(section)
|
mixin navigation_auto(gliederung, current)
|
||||||
//- li.breadcrumb-item !{section}
|
+navigation_auto_template(gliederung, current, "#0e4f88")
|
||||||
|
|
||||||
mixin headline_item_start
|
|
||||||
li.breadcrumb-item
|
|
||||||
a(href=pathoffset+"/") Start
|
|
||||||
|
|
||||||
mixin headline_item_einfuehrung
|
|
||||||
li.breadcrumb-item
|
|
||||||
a(href=pathoffset+"/einfuehrung") Einführung
|
|
||||||
|
|
||||||
mixin headline_item_adv_weihn_jkr3-7
|
|
||||||
li.breadcrumb-item
|
|
||||||
a(href=pathoffset+"/adv_weihn_jkr3-7") Advent, Weihnachten, Jahreskreis 3 - 7
|
|
||||||
|
|
||||||
mixin headline_item_fz_oz_jkr12-17
|
|
||||||
li.breadcrumb-item
|
|
||||||
a(href=pathoffset+"/fz_oz_jkr12-17") Fastenzeit, Osterzeit, Jahreskreis 12 - 17
|
|
||||||
|
|
||||||
mixin headline_item_jkr18-34
|
|
||||||
li.breadcrumb-item
|
|
||||||
a(href=pathoffset+"/jkr18-34") Jahreskreis 18 - 34
|
|
||||||
|
|
||||||
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: 3rem; border-top-width: 7px; border-radius: 7px 7px 7px 7px; border-top-color: rgba(0, 0, 0, 0.25);")
|
|
||||||
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, "einfuehrung", pathoffset + "/einfuehrung", "Einführung")
|
|
||||||
+bottom_nav_item(active, "adv_weihn", pathoffset+"/adv_weihn_jkr3-7", "Advent, Weihnachten, Zeit im Jahreskreis 3 - 7")
|
|
||||||
+bottom_nav_item(active, "fz_oz", pathoffset+"/fz_oz_jkr12-17", "Fastenzeit, Osterzeit, Zeit im Jahreskreis 12 - 17")
|
|
||||||
+bottom_nav_item(active, "jkr", pathoffset+"/jkr18-34", "Zeit im Jahreskres 18 - 34")
|
|
||||||
|
|
||||||
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_einfuehrung(active)
|
|
||||||
+bottom_nav("einfuehrung")
|
|
||||||
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, "verfasser", pathoffset+"/einfuehrung/verfasser", "Verfasser")
|
|
||||||
+bottom_subnav(active, "quellen", pathoffset+"/einfuehrung/quellen", "Quellen")
|
|
||||||
+bottom_subnav(active, "prolog", pathoffset+"/einfuehrung/prolog", "Der Verfasser über sein Werk")
|
|
||||||
+bottom_subnav(active, "aufbau", pathoffset+"/einfuehrung/aufbau", "Aufbau")
|
|
||||||
//- +bottom_subnav(active, "themen", pathoffset+"/einfuehrung/themen", "Themen")
|
|
||||||
|
|
||||||
mixin bottom_adv_weihn_jkr3-7(active)
|
|
||||||
+bottom_nav("adv_weihn")
|
|
||||||
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, "ueberblick", pathoffset+"/adv_weihn_jkr3-7/index", "Überblick")
|
|
||||||
+bottom_subnav(active, "gliederung", pathoffset+"/adv_weihn_jkr3-7/gliederung", "Gliederung")
|
|
||||||
+bottom_subnav(active, "johdt", pathoffset+"/adv_weihn_jkr3-7/johdt", "Johannes der Täufer")
|
|
||||||
+bottom_subnav(active, "weihnachten", pathoffset+"/adv_weihn_jkr3-7/weihnachten","<q>Weihnachten</q>")
|
|
||||||
+bottom_subnav(active, "antritt", pathoffset+"/adv_weihn_jkr3-7/antritt", "Antrittspredigt")
|
|
||||||
+bottom_subnav(active, "fischfang", pathoffset+"/adv_weihn_jkr3-7/fischfang", "Reicher Fischfang/<q>Berufung</q> des Petrus")
|
|
||||||
+bottom_subnav(active, "feldrede", pathoffset+"/adv_weihn_jkr3-7/feldrede", "Feldrede")
|
|
||||||
|
|
||||||
mixin bottom_fz_oz_jkr12-17(active)
|
|
||||||
+bottom_nav("fz_oz")
|
|
||||||
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, "ueberblick", pathoffset+"/fz_oz_jkr12-17/index", "Überblick")
|
|
||||||
+bottom_subnav(active, "gliederung", pathoffset+"/fz_oz_jkr12-17/gliederung", "Gliederung")
|
|
||||||
|
|
||||||
mixin bottom_jkr18-34(active)
|
|
||||||
+bottom_nav("jkr")
|
|
||||||
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, "ueberblick", pathoffset+"/jkr18-34/index", "Überblick")
|
|
||||||
+bottom_subnav(active, "literatur", pathoffset+"/impulse_literatur/literatur", "Ausgewählte Literatur")
|
|
||||||
|
|
||||||
|
mixin bottom_autonav(gliederung, current)
|
||||||
|
+bottom_autonav_template(gliederung, current, "#a4d0fd")
|
||||||
|
|
||||||
mixin ueberblick_thead
|
mixin ueberblick_thead
|
||||||
thead
|
thead
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,35 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes in der Wüste I: Johannes und seine Taufe; die Scharen kommen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-5
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes in der Wüste II: Johannes, der wiedergekommene Elija, der auf den Kommenden und dessen Geisttaufe hinweist
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,6-8
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu I: Jesus lässt sich taufen = Tod
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu II: <q>Als er aus dem Wasser stieg, da ...</q> = Auferstehung
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,10-11
|
||||||
|
|
||||||
|
p
|
||||||
|
| Als Gegenüber zur Johannes-Taufe erscheint der Tod Jesu: die eine Hälfte der Taufe.
|
||||||
|
|
@ -0,0 +1,43 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-8
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu I: Jesus lässt sich taufen = Tod
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu II: <q>Als er aus dem Wasser stieg, da ...</q> = Auferstehung
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,10-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
p
|
||||||
|
| Als Gegenüber zur Johannes-Taufe erscheint die Auferstehung Jesu: die zweite Hälfte der Taufe.
|
||||||
|
br
|
||||||
|
| Die angekündigte Geisttaufe spiegelt sich im Geistempfang Jesu, der nun also mit Geist taufen kann.
|
||||||
|
|
||||||
|
p
|
||||||
|
| Der Kommende ist stärker als Johannes; der ist es <q>nicht wert</q>, diesem den niedrigsten Dienst zu leisten:
|
||||||
|
br
|
||||||
|
| dem korrespondiert das Sohn-Gottes-Sein Jesu; dennoch hat dieser sich von Johannes taufen lassen
|
||||||
|
| → Selbstverleugnung!
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer in der Wüste: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-8
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu: Tod und Auferstehung Jesu als Wendepunkt der Heilsgeschichte
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus in der Wüste: Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
|
||||||
|
p
|
||||||
|
| Der Kommende [= Jesus] als der Stärkere, der im Kampf mit Satan [= der Starke] siegt.
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Inhaltsangabe/Überschrift
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,1
|
||||||
|
p.card-text
|
||||||
|
q Anfang des Evangeliums von Jesus Christus, Sohn eines Gottes
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Ankündigung Jesaja-Zitat
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,2a
|
||||||
|
p.card-text
|
||||||
|
q Wie geschrieben steht beim Propheten Jesaja:
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Zitat aus Mal 3 und Ex
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,2b
|
||||||
|
p.card-text
|
||||||
|
q Siehe, ich sende meinen Boten vor dir her, der deinen Weg bahnen wird.
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Tatsächliches Jesaja-Zitat
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,3
|
||||||
|
p.card-text
|
||||||
|
q Stimme eines Rufers in der Wüste: Bereitet den Weg des Herrn! Macht gerade seine Straßen!
|
||||||
|
|
||||||
|
|
@ -0,0 +1,109 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer am Wasser mit seinem Hinweis auf den Kommenden; Taufe Jesu; Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
br
|
||||||
|
| Rückzug und Suche: Jesus an einsamem Ort, dennoch von allen gesucht
|
||||||
|
br
|
||||||
|
| Erneuter Aufbruch mit Dämonenaustreibungen: Jesus rennt überall rum und verkündet und heilt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,32-39
|
||||||
|
p.card-text
|
||||||
|
| Und es wurde Abend, und es wurde Morgen ...
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Andrang der Menschen; die ganze Stadt vor dem Haus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,1-2
|
||||||
|
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,3-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus predigend am Wasser; Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,13-14
|
||||||
|
p.card-text
|
||||||
|
| Levi erhebt sich → Teil der neuen Schöpfung
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Mahl mit den Zöllnern und Sündern, die Jesus nachfolgen
|
||||||
|
br
|
||||||
|
| Jesus gekommen als Arzt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,15-17
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Fastenfrage
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,18-20
|
||||||
|
p.card-text
|
||||||
|
| ... es werden Tagen kommen, da ihnen der Bräutigam genommen ist
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Neuer Wein in neue Schläuche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,21-22
|
||||||
|
p.card-text
|
||||||
|
| Neue Trägerschaft notwendig, nicht die bisherige Führerschaft Israels!
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Der Menschensohn ist Herr auch über den Sabbat
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,23-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Mannes mit der verdorrten Hand
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 3,1-6
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Der Andrang der Menschen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 3,7-12
|
||||||
|
|
@ -0,0 +1,82 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer am Wasser; Scharen kommen; Taufe Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Rückzug und Suche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,35-37
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Antwort Jesu [mit 'Gekommensein', 'Verkündigen']; Erneuter Aufbruch ['Synagogen', 'Dämonenaustreibungen']
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,35-37
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus predigt <q>das Wort</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,1-2
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,3-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus am Wasser; Scharen kommen; Jesus lehrt; Die Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,13-14
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Mahl mit den Zöllnern und Sündern; Jesus gekommen als Arzt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,15-17
|
||||||
|
|
@ -0,0 +1,76 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes in der Wüste I: Johannes und seine Taufe; die Scharen kommen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-5
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes in der Wüste II: Johannes, der wiedergekommene Elija, der es nicht wert ist, dem Kommenden zu dienen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,6-7
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu: Tod und Auferstehung Jesu als Wendepunkt der Heilsgeschichte
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,29-31
|
||||||
|
p.card-text
|
||||||
|
| Jesus, der den Dienst der Schwiegermutter des Petrus annimmt;
|
||||||
|
br
|
||||||
|
| zunächst aber hatte er selber ihr gedient! Das geht voraus!
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Rückzug und erneuter Aufbruch
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,35-39
|
||||||
|
|
||||||
|
//- Früh, als es noch dunkel war, stand er auf → Ostern!
|
||||||
|
//- Jesus wird <q>gefunden</q> im Gebet – mehrdeutig! gerade auch (andernorts) als Gegenüber zur Versuchung!
|
||||||
|
//- Gebet als Teil von Nachfolge!
|
||||||
|
|
||||||
|
//- Alle suchen dich; Antwort Jesu: Verkündigung (in Wort und Tat) ausbauen [<q>alle</q> schillert!]
|
||||||
|
//- Jesus entzieht sich einer in Verehrung sich wandelnden Wirksamkeit hin zu einer aktiven, dienenden Wirksamkeit.
|
||||||
|
//- Jesus wird <q>gefunden</q> in denen, denen man das Evangelium schenkt; vgl. Mk 9,37!
|
||||||
|
//- [die Kranken sind schon geheilt; jetzt gesucht zu werden heißt, zur Verehrung gesucht zu werden; vgl. auch Verklärung]
|
||||||
|
|
||||||
|
|
@ -0,0 +1,72 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer in der Wüste: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-8
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu I: Jesus lässt sich taufen = Tod
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu II: <q>Als er aus dem Wasser stieg, da ...</q> = Auferstehung
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,10-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,29-31
|
||||||
|
p.card-text
|
||||||
|
q Jesus ging zu ihr, fasste sie an der Hand und richtete sie auf. Da wich das Fieber von ihr und sie diente ihnen.
|
||||||
|
|
||||||
|
p
|
||||||
|
| Hier ist auch besonders das Gegenüber von Jesu Tod und der Berufung der ersten Jünger interessant:
|
||||||
|
br
|
||||||
|
| Die Jünger verlassen im Rahmen ihrer Berufung <q>alles</q>; so hat auch Jesus seine Heimat
|
||||||
|
| verlassen, um zur Taufe des Johannes zu kommen.
|
||||||
|
br
|
||||||
|
| In der geographischen Perspektive (Galiläa: oben; Taufort des Johannes: unterhalb Galiläas)
|
||||||
|
| kann man auch an das Kommen vom Himmel herab (→ Selbstverleugnung; vlg. Mk 10,18.19) denken.
|
||||||
|
|
||||||
|
p
|
||||||
|
| Dieser Gedanke passt auch gut zu Mitte und Unten:
|
||||||
|
br
|
||||||
|
| Die Versuchung Jesu ist ja gerade, sich dienen zu lassen, statt zu dienen (sprich: Messias nach Menschenart zu sein).
|
||||||
|
br
|
||||||
|
| Doch er folgt seiner Sendung, zu dienen, zu der er alles verlassen hat:
|
||||||
|
|
|
||||||
|
| Unten dient Jesus der Schwiegermutter des Petrus(, die dann dann selber dient).
|
||||||
|
|
@ -0,0 +1,93 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer am Wasser; Scharen kommen; Taufe Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten (vier!) Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Rückzug und Suche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,35-37
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Erneuter Aufbruch mit Dämonenaustreibungen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,38-39
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus wieder in Kafarnaum im Haus; er verkündigt <q>das Wort</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,1-2
|
||||||
|
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten, der von vier Männern gebracht wird
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,3-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus predigend am Wasser
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,14
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Mahl mit den Zöllnern und Sündern; Jesus gekommen als Arzt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,15-17
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Fastenfrage; <q>Es werden Tage kommen, da wird ihnen der Bräutigam genommen sein</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,18-20
|
||||||
|
|
@ -0,0 +1,114 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-10
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer am Wasser mit seinem Hinweis auf den Kommenden; Taufe Jesu; Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger: <q>Menschenfischer</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Rückzug und Suche: Jesus an einsamem Ort, dennoch von allen gesucht
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,35-39
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Erneuter Aufbruch mit Dämonenaustreibungen: Jesus rennt überall rum und verkündet und heilt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,35-39
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-44
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Der Mann rennt überall rum und verkündet
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,45a
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus ist an einsamem Ort, dennoch von überallher gesucht
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,45b
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus wieder in Kafarnaum im Haus; er verkündigt <q>das Wort</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,1-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,3-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus predigend am Wasser; Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,13-14
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Mahl mit den Zöllnern und Sündern, die Jesus nachfolgen
|
||||||
|
br
|
||||||
|
| Jesus gekommen als Arzt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,15-17
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Fastenfrage; <q>Es werden Tage kommen, da wird ihnen der Bräutigam genommen sein</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,18-20
|
||||||
|
p.card-text
|
||||||
|
| <q>Die Jünger des Johannes fasten ...</q>
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Neuer Wein in neue Schläuche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,21-22
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-10
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Der Menschensohn ist Herr auch über den Sabbat
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,23-28
|
||||||
|
p.card-text
|
||||||
|
| <q>Bote vor dir her</q> = König David
|
||||||
|
br
|
||||||
|
| <q>Menschensohn</q> – <q>Gottessohn</q>: Selbstverleugnung; Dienst (→ Mk 10,45!)
|
||||||
|
|
@ -0,0 +1,53 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer in der Wüste: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-8
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu I: Jesus lässt sich taufen = Tod
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu II: <q>Als er aus dem Wasser stieg, da ...</q> = Auferstehung
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,10-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
p
|
||||||
|
| Der Kommende ist stärker als Johannes; der ist es <q>nicht wert</q>, diesem den niedrigsten Dienst zu leisten,
|
||||||
|
br
|
||||||
|
| dennoch hat dieser sich von Johannes taufen lassen
|
||||||
|
| → Selbstverleugnung!
|
||||||
|
|
||||||
|
p
|
||||||
|
| <q>Als Jesus aus dem Wasser stieg ...</q> korrespondiert dem Auftrag an die Jünger,
|
||||||
|
| Menschenfischer zu werden: die ziehen auch aus dem Wasser!
|
||||||
|
|
||||||
|
|
@ -0,0 +1,78 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes in der Wüste: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-7
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu: Tod und Auferstehung Jesu als Wendepunkt der Heilsgeschichte
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,21-28
|
||||||
|
p.card-text
|
||||||
|
| Zum Verderben der Dämonen geht Jesus selbst ins Verderben.
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Rückzug und erneuter Aufbruch
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,35-39
|
||||||
|
p.card-text
|
||||||
|
| Versuchung – Gebet!
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus verkündet das Wort; die Massen kommen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,1-2
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten (Mitbegraben mit Christus)
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,3-12
|
||||||
|
p.card-text
|
||||||
|
| Ins <q>Verderben</q> (des alten Lebens) muss auch jeder gehen, der am neuen Leben in Christus Anteil haben will.
|
||||||
|
|
@ -0,0 +1,97 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer am Wasser; Scharen kommen; Taufe Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
br
|
||||||
|
| Rückzug und Suche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-37
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Erneuter Aufbruch mit Dämonenaustreibungen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,38-39
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,40-45
|
||||||
|
p.card-text
|
||||||
|
| Jesus geht infolge der Heilung in die Einsamkeit, dennoch kommen Leute von überallher zu ihm.
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus wieder in Kafarnaum im Haus; er verkündigt <q>das Wort</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,1-2
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,3-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus predigend am Wasser; Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,13-14
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Mahl mit den Zöllnern und Sündern, die Jesus nachfolgen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus gekommen als Arzt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,16-17
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Fastenfrage; <q>Es werden Tage kommen, da wird ihnen der Bräutigam genommen sein</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,18-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Neuer Wein in neue Schläuche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,21-22
|
||||||
|
|
@ -0,0 +1,98 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer am Wasser mit seinem Hinweis auf den Kommenden; Taufe Jesu; Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
br
|
||||||
|
| Rückzug und Suche: Jesus an einsamem Ort, dennoch von allen gesucht
|
||||||
|
br
|
||||||
|
| Erneuter Aufbruch mit Dämonenaustreibungen: Jesus rennt überall rum und verkündet und heilt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,32-39
|
||||||
|
p.card-text
|
||||||
|
| Und es wurde Abend, und es wurde Morgen ...
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,1-12
|
||||||
|
p.card-text
|
||||||
|
| ...: Neue Schöpfung!
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus predigend am Wasser; Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,13-14
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Mahl mit den Zöllnern und Sündern, die Jesus nachfolgen
|
||||||
|
br
|
||||||
|
| Jesus gekommen als Arzt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,15-17
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Fastenfrage
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,18-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Neuer Wein in neue Schläuche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,21-22
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Der Menschensohn ist Herr auch über den Sabbat
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,23-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Mannes mit der verdorrten Hand: <q>wiederhergstellt</q>
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 3,1-6
|
||||||
|
p.card-text
|
||||||
|
| Herodianer → Tod des Johannes
|
||||||
|
br
|
||||||
|
| Leben retten – Leben vernichten: In Jesu Tod ist uns das Leben geschenkt!
|
||||||
|
|
@ -0,0 +1,78 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Massen kommen zu Johannes dem Täufer; der führt zu Jesus hin; Taufe Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Rückzug und Suche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,35-38
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Erneuter Aufbruch
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,39
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,1-12
|
||||||
|
p.card-text
|
||||||
|
| Massen kommen zu Jesus
|
||||||
|
br
|
||||||
|
| Vier Männer führen Gelähmten zu Jesus hin
|
||||||
|
br
|
||||||
|
q Wie Gott Christus auferweckt hat, so auch ihr: In der Neuheit des Lebens wandeln
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,13-14
|
||||||
|
|
@ -0,0 +1,84 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes in der Wüste: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-7
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu: Tod und Auferstehung Jesu als Wendepunkt der Heilsgeschichte
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,12-13
|
||||||
|
p.card-text
|
||||||
|
| Die Engel dienen Jesus → Himmel dient Jesus
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,16-20
|
||||||
|
p.card-text
|
||||||
|
| Menschenfischer → Menschen aus der Gewalt der Sünde befreien
|
||||||
|
br
|
||||||
|
| Sie richteten ihre Netzte her → Jesus richtet den Mann wieder zurecht (<q>Reinigung</q>)
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,29-31
|
||||||
|
p.card-text
|
||||||
|
| Die Schwiegermutter des Petrus dient Jesus → Erde dient Jesus
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Rückzug und erneuter Aufbruch
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,35-39
|
||||||
|
p.card-text
|
||||||
|
| Jesus zieht sich an einen einsamen Ort zurück.
|
||||||
|
p.card-text
|
||||||
|
| Nach mir kommt einer – die Jünger eilen Jesus nach.
|
||||||
|
p.card-text
|
||||||
|
| Taufe – Dämonenaustreibungen
|
||||||
|
p.card-text
|
||||||
|
| Johannes verkündet – Jesus verkündet
|
||||||
|
p.card-text
|
||||||
|
| Die Menschen aus <q>ganz Judäa</q> kamen zu Johannes dem Taufer;
|
||||||
|
br
|
||||||
|
| Jesus zieht in <q>ganz Galiläa</q> umher.
|
||||||
|
br
|
||||||
|
| <q>Alle</q> Einwohner Jerusalems – <q>alle</q> suchen dich.
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
@ -0,0 +1,51 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer in der Wüste: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-8
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu: Tod und Auferstehung Jesu als Wendepunkt der Heilsgeschichte
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
|
||||||
|
p
|
||||||
|
q Siehe, ich sende meinen Boten vor dir her!
|
||||||
|
br
|
||||||
|
| Das ist zum Dämon gesprochen:
|
||||||
|
br
|
||||||
|
| Um diesen ins Verderben zu stürzen, geht Jesus selber ins Verderben, d. h. den Tod am Kreuz;
|
||||||
|
| so geht er dem Dämon <q>voraus</q>.
|
||||||
|
|
@ -0,0 +1,69 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer in der Wüste: Seine Taufe und seine Ankündigung des Kommenden
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,4-8
|
||||||
|
p.card-text
|
||||||
|
| Johannes weist auf Jesus hin, den Stärkeren
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu I: Jesus lässt sich taufen = Tod
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,9
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Taufe Jesu II: <q>Als er aus dem Wasser stieg, da ...: <q>Du bist mein geliebter Sohn</q></q> = Auferstehung
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,10-11
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,12-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung des Petrus und Andreas
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-18
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der Brüder Jakobus und Johannes, Söhne des Zebedäus, die ihren Vater verlassen, um Jesus nachzufolgen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,19-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 1,29-31
|
||||||
|
p.card-text
|
||||||
|
| Petrus und Andreas weisen Jesus auf die kranke Schwiegermutter des Petrus hin;
|
||||||
|
br
|
||||||
|
| Jesus, der Stärkere, heilt sie: Aufrichtung als Chifre für die Auferstehung (Jesu bzw. die Anteilhabe der Menschen daran)
|
||||||
|
| bzw. die <q>Taufe zur Vergebung der Sünden</q>, die <q>Geisttaufe</q>, die Johannes angekündigt hat.
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die ganze Stadt vor der Tür – die Dämonen wissen, wer Jesus ist
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-34
|
||||||
|
|
@ -0,0 +1,115 @@
|
||||||
|
extends ../layout
|
||||||
|
include ../mixins
|
||||||
|
|
||||||
|
block content
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-10
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Inhaltsangabe/Überschrift
|
||||||
|
br
|
||||||
|
| Himmlischer Sendungsbeschluss
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,1-3
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes der Täufer am Wasser mit seinem Hinweis auf den Kommenden; Taufe Jesu; Versuchung Jesu
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,4-13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Johannes tritt ab, Jesus tritt auf: Eröffnungsruf des Wirkens Jesu: Das Reich Gottes ist zum Greifen nahe!
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,14-15
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Berufung der ersten Jünger
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,16-20
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die neue Lehre in der Synagoge: Jesus gekommen, um Satan/die Dämonen ins Verderben zu stürzen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,21-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung der Schwiegermutter des Petrus, die (daraufhin!) Jesus dient
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,29-31
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Die ganze Stadt vor der Tür; Jesus heilt und treibt Dämonen aus
|
||||||
|
br
|
||||||
|
| Rückzug und Suche: Jesus an einsamem Ort, dennoch von allen gesucht
|
||||||
|
br
|
||||||
|
| Erneuter Aufbruch mit Dämonenaustreibungen: Jesus rennt überall rum und verkündet und heilt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,32-39
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Aussätzigen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 1,40-45
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Andrang der Menschen; die ganze Stadt vor dem Haus
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,1-2
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-1
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus heilt den Gelähmten
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,3-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-2
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Jesus predigend am Wasser, die Massen kommen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,13
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-3
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Berufung des Zöllners Levi
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,14
|
||||||
|
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-4
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title
|
||||||
|
| Mahl mit den Zöllnern und Sündern, die Jesus nachfolgen
|
||||||
|
br
|
||||||
|
| Jesus gekommen als Arzt
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,15-17
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-5
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Fastenfrage
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,18-20
|
||||||
|
p.card-text
|
||||||
|
| Schwiegermutter – Bräutigam
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-6
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Neuer Wein in neue Schläuche
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted.mb-3 Mk 2,21-22
|
||||||
|
p.card-text
|
||||||
|
| Neue Trägerschaft notwendig, nicht die bisherige Führerschaft Israels!
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-7
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Der Menschensohn ist Herr auch über den Sabbat
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 2,23-28
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-8
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Heilung des Mannes mit der verdorrten Hand
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 3,1-6
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-9
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Der Andrang der Menschen
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 3,7-12
|
||||||
|
|
||||||
|
.card.mb-3.konzentr-10
|
||||||
|
.card-body.gliederung
|
||||||
|
h5.card-title Die Wahl der Zwölf
|
||||||
|
h6.bibelstelle.card-subtitle.text-muted Mk 3,13-13
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.konzentr-3.mb-3
|
.card.konzentr-3.mb-3
|
||||||
|
|
@ -132,8 +128,3 @@ block content
|
||||||
| Christus ist nicht (nur) Davidssohn (als Mensch), sondern Gottessohn.
|
| Christus ist nicht (nur) Davidssohn (als Mensch), sondern Gottessohn.
|
||||||
br
|
br
|
||||||
| Mit ihm kommt (nicht nur) das (richtig verstandene) Reich Davids, sondern das Reich Gottes!
|
| Mit ihm kommt (nicht nur) das (richtig verstandene) Reich Davids, sondern das Reich Gottes!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card
|
.card
|
||||||
|
|
@ -809,9 +805,3 @@ block content
|
||||||
| Bartimäus folgt Jesus – sehenden Auges! – auf seinem Weg!
|
| Bartimäus folgt Jesus – sehenden Auges! – auf seinem Weg!
|
||||||
br
|
br
|
||||||
| Dazu verlässt er <q>alles</q>: er wirft seinen Mantel – seine alte Existenz – weg
|
| Dazu verlässt er <q>alles</q>: er wirft seinen Mantel – seine alte Existenz – weg
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.konzentr-4.mb-3
|
.card.konzentr-4.mb-3
|
||||||
|
|
@ -147,6 +143,3 @@ block content
|
||||||
q Die Hohenpriester und die Schriftgelehrten ... suchten nach einer Möglichkeit, ihn umzubringen.
|
q Die Hohenpriester und die Schriftgelehrten ... suchten nach einer Möglichkeit, ihn umzubringen.
|
||||||
br
|
br
|
||||||
| Verfluchung/Verdorren des Feigenbaumes als Symbol für Unfruchtbarkeit und <q>Tod</q> des Tempels.
|
| Verfluchung/Verdorren des Feigenbaumes als Symbol für Unfruchtbarkeit und <q>Tod</q> des Tempels.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card
|
.card
|
||||||
|
|
@ -558,7 +554,3 @@ block content
|
||||||
| Interessant auch, wie die Erzählung von Bartimäus, dem blinden <i>Bettler</i> die Themen Herrschaft und Reichtum zusammenbindet,
|
| Interessant auch, wie die Erzählung von Bartimäus, dem blinden <i>Bettler</i> die Themen Herrschaft und Reichtum zusammenbindet,
|
||||||
| wie auch 10,21 und 10,45 (im Kontext gesprochen) als Mitten der beiden gegenüberliegenden Teile von IIIA diese beiden Bereiche ansprechen,
|
| wie auch 10,21 und 10,45 (im Kontext gesprochen) als Mitten der beiden gegenüberliegenden Teile von IIIA diese beiden Bereiche ansprechen,
|
||||||
| und im Wort vom Dienen verallgemeinern.
|
| und im Wort vom Dienen verallgemeinern.
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
|
|
@ -234,7 +231,3 @@ block content
|
||||||
| → Dass Jesus von den Bauleuten verworfen wurde, ist kein Argument gegen ihn, sondern für ihn!
|
| → Dass Jesus von den Bauleuten verworfen wurde, ist kein Argument gegen ihn, sondern für ihn!
|
||||||
p.card-text.small
|
p.card-text.small
|
||||||
| <q>geliebter Sohn</q> → Taufe Jesu!
|
| <q>geliebter Sohn</q> → Taufe Jesu!
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.card.konzentr-8.mb-2
|
.card.konzentr-8.mb-2
|
||||||
|
|
@ -99,6 +96,3 @@ block content
|
||||||
h6.card-title Todesbeschluss der Gegner
|
h6.card-title Todesbeschluss der Gegner
|
||||||
h6.card-subtitle.text-muted.bibelstelle Mk 3,6
|
h6.card-subtitle.text-muted.bibelstelle Mk 3,6
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card-deck
|
.card-deck
|
||||||
|
|
@ -572,6 +568,3 @@ block content
|
||||||
h6.card-subtitle.text-muted.bibelstelle Mk 2,14-17
|
h6.card-subtitle.text-muted.bibelstelle Mk 2,14-17
|
||||||
p.card-text.small
|
p.card-text.small
|
||||||
| Konflikt mit den Pharisäern
|
| Konflikt mit den Pharisäern
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.card.konzentr-10.mb-2
|
.card.konzentr-10.mb-2
|
||||||
|
|
@ -126,6 +122,3 @@ block content
|
||||||
| Symbolik 12/7: Juden/Heiden
|
| Symbolik 12/7: Juden/Heiden
|
||||||
br
|
br
|
||||||
| Unverständige Jünger
|
| Unverständige Jünger
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.card.konzentr-6.mb-2
|
.card.konzentr-6.mb-2
|
||||||
.card-body.gliederung
|
.card-body.gliederung
|
||||||
|
|
@ -58,6 +54,3 @@ block content
|
||||||
.card-body.gliederung
|
.card-body.gliederung
|
||||||
h6.card-title Die Epiphanie (<q>Erscheinung</q>) Jesu auf dem Wasser
|
h6.card-title Die Epiphanie (<q>Erscheinung</q>) Jesu auf dem Wasser
|
||||||
h6.card-subtitle.text-muted.bibelstelle Mk 6,45-52
|
h6.card-subtitle.text-muted.bibelstelle Mk 6,45-52
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.card.konzentr-4.mb-2
|
.card.konzentr-4.mb-2
|
||||||
.card-body.gliederung
|
.card-body.gliederung
|
||||||
|
|
@ -52,8 +48,3 @@ block content
|
||||||
h6.card-title Die Epiphanie (<q>Erscheinung</q>) Jesu auf dem Wasser
|
h6.card-title Die Epiphanie (<q>Erscheinung</q>) Jesu auf dem Wasser
|
||||||
h6.card-subtitle.text-muted.bibelstelle Mk 6,47-52
|
h6.card-subtitle.text-muted.bibelstelle Mk 6,47-52
|
||||||
p.card-text.small (Gegenwind! Unglaube der Jünger!) Wer ist/woher kommt Jesus?
|
p.card-text.small (Gegenwind! Unglaube der Jünger!) Wer ist/woher kommt Jesus?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.card.konzentr-6.mb-2
|
.card.konzentr-6.mb-2
|
||||||
.card-body.gliederung
|
.card-body.gliederung
|
||||||
|
|
@ -53,6 +49,3 @@ block content
|
||||||
.card-body.gliederung
|
.card-body.gliederung
|
||||||
h6.card-title Die Enthauptung Johannes des Täufers
|
h6.card-title Die Enthauptung Johannes des Täufers
|
||||||
h6.card-subtitle.text-muted.bibelstelle Mk 6,17-29
|
h6.card-subtitle.text-muted.bibelstelle Mk 6,17-29
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.card.konzentr-7.mb-2
|
.card.konzentr-7.mb-2
|
||||||
.card-body.gliederung
|
.card-body.gliederung
|
||||||
|
|
@ -79,7 +75,3 @@ block content
|
||||||
h6.card-title
|
h6.card-title
|
||||||
| Warnung vor der Verführung zum Glaubensabfall: Selbstverstümmelung (der Gemeinde) um des Himmelreiches willen
|
| Warnung vor der Verführung zum Glaubensabfall: Selbstverstümmelung (der Gemeinde) um des Himmelreiches willen
|
||||||
h6.card-subtitle.text-muted.bibelstelle Mk 9,42-50
|
h6.card-subtitle.text-muted.bibelstelle Mk 9,42-50
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -628,8 +624,3 @@ block content
|
||||||
span.small (Vgl. auch Mk 1,14-15: mit Jesus bricht das Reich <i>Gottes</i> an! Vgl auch Mk 9,37: letztlich geht es das Kommen Gottes selbst!)
|
span.small (Vgl. auch Mk 1,14-15: mit Jesus bricht das Reich <i>Gottes</i> an! Vgl auch Mk 9,37: letztlich geht es das Kommen Gottes selbst!)
|
||||||
br
|
br
|
||||||
| Die beiden Jesaja-Zitate sind aufeinander zu beziehen im Sinne von Auftrag (= Webgereitung) und <q>gut gemacht</q> (<q>Wohlgefallen</q>)
|
| Die beiden Jesaja-Zitate sind aufeinander zu beziehen im Sinne von Auftrag (= Webgereitung) und <q>gut gemacht</q> (<q>Wohlgefallen</q>)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.viewbox.konzentr-12
|
.viewbox.konzentr-12
|
||||||
|
|
@ -107,7 +103,3 @@ block content
|
||||||
.viewbox.konzentr-12
|
.viewbox.konzentr-12
|
||||||
h6 Die Heilung des blinden Bettlers Bartimäus bei Jericho
|
h6 Die Heilung des blinden Bettlers Bartimäus bei Jericho
|
||||||
.small Mk 10,46-52
|
.small Mk 10,46-52
|
||||||
|
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
.viewbox.konzentr-8
|
.viewbox.konzentr-8
|
||||||
h6 Der Rangstreit der Jünger
|
h6 Der Rangstreit der Jünger
|
||||||
|
|
@ -254,5 +250,3 @@ block content
|
||||||
li
|
li
|
||||||
| Wie Christus, der Menschensohn, dienen: <q>Denn auch der Menschensohn ...</q>
|
| Wie Christus, der Menschensohn, dienen: <q>Denn auch der Menschensohn ...</q>
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
extends ../layout
|
extends ../layout
|
||||||
include ../mixins
|
include ../mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
+navigation_auto(gliederung, current)
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
.row
|
.row
|
||||||
|
|
@ -586,5 +582,3 @@ block content
|
||||||
p.card-text.small Die Heilung des blinden Bettlers Bartimäus bei Jericho
|
p.card-text.small Die Heilung des blinden Bettlers Bartimäus bei Jericho
|
||||||
p.card-text.small
|
p.card-text.small
|
||||||
i Vom <q>Zurückweisen</q> zum <q>Herrufen</q>.
|
i Vom <q>Zurückweisen</q> zum <q>Herrufen</q>.
|
||||||
block bottomnav
|
|
||||||
+bottom_autonav(gliederung, current)
|
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,6 @@
|
||||||
extends layout
|
extends layout
|
||||||
include mixins
|
include mixins
|
||||||
|
|
||||||
block headline
|
|
||||||
+headline
|
|
||||||
ol.breadcrumb(onclick="show_all_slides();", style="margin-top: .5rem; border-radius: 0;")
|
|
||||||
.h3(style="margin-bottom: 0px; color: #0e4f88; width: 100%;") Start
|
|
||||||
span.small.dropdown
|
|
||||||
a.dropdown-toggle(data-toggle="dropdown", href="#", style="margin-bottom: 0px; color: #0e4f88; width: 100%;")
|
|
||||||
.dropdown-menu
|
|
||||||
a.dropdown-item(href="#")
|
|
||||||
b Start
|
|
||||||
each sub in gliederung
|
|
||||||
a.dropdown-item(href=pathoffset + "/" + sub.id) !{sub.name}
|
|
||||||
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
|
||||||
h1 Das Evangelium nach Markus – lange unterschätzt
|
h1 Das Evangelium nach Markus – lange unterschätzt
|
||||||
|
|
@ -62,14 +49,3 @@ block content
|
||||||
|
|
||||||
p
|
p
|
||||||
| Dies alles zeigt, dass man sich zunächst mit der <a href="#{pathoffset}/gliederung">Gliederung des Evangeliums</a> vertraut machen sollte.
|
| Dies alles zeigt, dass man sich zunächst mit der <a href="#{pathoffset}/gliederung">Gliederung des Evangeliums</a> vertraut machen sollte.
|
||||||
|
|
||||||
block bottomnav
|
|
||||||
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;")
|
|
||||||
li.nav-item
|
|
||||||
a.nav-link.active(href="#") Start
|
|
||||||
each item in gliederung
|
|
||||||
- var my_fullpath = pathoffset + "/" + item.id;
|
|
||||||
|
|
||||||
li.nav-item
|
|
||||||
a.nav-link(href=my_fullpath) !{item.name}
|
|
||||||
|
|
|
||||||
|
|
@ -18,17 +18,28 @@ html(lang='de')
|
||||||
|
|
||||||
+cookies_css
|
+cookies_css
|
||||||
body
|
body
|
||||||
|
+headline
|
||||||
block headline
|
block headline
|
||||||
|
+navigation_auto(gliederung, current)
|
||||||
|
|
||||||
.container-fluid
|
.container-fluid
|
||||||
block content
|
block content
|
||||||
|
|
||||||
|
+bottom_autonav(gliederung, current)
|
||||||
block bottomnav
|
block bottomnav
|
||||||
|
|
||||||
div(style="height: 20px;")
|
div(style="height: 20px;")
|
||||||
|
|
||||||
script(src='/javascripts/bootstrap.min.js')
|
script(src='/javascripts/bootstrap.min.js')
|
||||||
|
|
||||||
|
script.
|
||||||
|
push_slide_stack('.slide')
|
||||||
|
|
||||||
|
$(function () {
|
||||||
|
$('[data-toggle="tooltip"]').tooltip()
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
+body_presentation_script
|
+body_presentation_script
|
||||||
|
|
||||||
+cookies_html
|
+cookies_html
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue