blob: 2a6e6a7c87305f0292643db7a56bf68688570084 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
$title = "Neues Konzert";
$class_konzert = '';
$class_index= '';
$class_proben= '';
$class_chor= '';
$class_video= 'class="active"';
require_once __DIR__ . '/header.php';
?>
<div class="container">
<!--div class="row">
<h1>The River is flowing</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src=https://static.gospeladlershof.de/videos/theriverisflowing.mp4 type=video/mp4>
</video>
</div>
</div--> <!-- /.row -->
<div class="row">
<h1>King of Kings</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (320).mp4" type=video/mp4 media="all and (min-width: 320px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (400).mp4" type=video/mp4 media="all and (min-width: 480px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (720).mp4" type=video/mp4 media="all and (min-width: 720px)">
</video>
</div>
</div> <!-- /.row -->
<div class="row">
<h1>Jesus is my Salvation</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src=https://static.gospeladlershof.de/videos/jesusismysalvation.mp4 type=video/mp4>
</video>
</div>
</div> <!-- /.row -->
<div class="row">
<h1>Jesus on the Mainline</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src=https://static.gospeladlershof.de/videos/jesusonthemainline.mp4 type=video/mp4>
</video>
</div>
</div> <!-- /.row -->
</div> <!-- /container -->
<?php
require_once __DIR__ . '/footer.php';
?>
|