update from 52da964
@ -1,258 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>Ergebnisse und Eindrücke vom 22.2.2025</title>
|
|
||||||
<link rel="stylesheet" href="/assets/css/styles.css"/>
|
|
||||||
<!-- lightgallery styles -->
|
|
||||||
<link rel="stylesheet" href="/assets/css/lightgallery-bundle.css"/>
|
|
||||||
<!-- lightgallery code -->
|
|
||||||
<script src="/assets/js/lightgallery.umd.js"></script>
|
|
||||||
<!-- lightgallery plugins -->
|
|
||||||
<script src="/assets/js/plugins/lg-thumbnail.umd.js"></script>
|
|
||||||
<script src="/assets/js/plugins/lg-zoom.umd.js"></script>
|
|
||||||
<script src="/assets/js/plugins/lg-hash.umd.js"></script>
|
|
||||||
<script src="/assets/js/plugins/lg-share.umd.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Ergebnisse und Eindrücke vom 22.2.2025</h1>
|
|
||||||
<p>02 Feb 2025</p>
|
|
||||||
|
|
||||||
<p>So könnte ein Bericht vom Event aussehen:</p>
|
|
||||||
|
|
||||||
<h2>Stimmen:</h2>
|
|
||||||
<table id="count1">
|
|
||||||
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
|
|
||||||
|
|
||||||
<th onclick="sortTable(0)">Name</th>
|
|
||||||
|
|
||||||
|
|
||||||
<th onclick="sortTable(1)">Stimmen</th>
|
|
||||||
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Bill Gates
|
|
||||||
</td><td class="col2">
|
|
||||||
11
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Tedros
|
|
||||||
</td><td class="col2">
|
|
||||||
2
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Merz
|
|
||||||
</td><td class="col2">
|
|
||||||
4
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Musk
|
|
||||||
</td><td class="col2">
|
|
||||||
4
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Höcke
|
|
||||||
</td><td class="col2">
|
|
||||||
2
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Habeck
|
|
||||||
</td><td class="col2">
|
|
||||||
5
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Baerbock
|
|
||||||
</td><td class="col2">
|
|
||||||
3
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Franziskus
|
|
||||||
</td><td class="col2">
|
|
||||||
1
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
</table>
|
|
||||||
<script>
|
|
||||||
function sortTable(n) {
|
|
||||||
var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0;
|
|
||||||
table = document.getElementById("count1");
|
|
||||||
switching = true;
|
|
||||||
// Set the sorting direction to ascending:
|
|
||||||
dir = "asc";
|
|
||||||
/* Make a loop that will continue until
|
|
||||||
no switching has been done: */
|
|
||||||
while (switching) {
|
|
||||||
// Start by saying: no switching is done:
|
|
||||||
switching = false;
|
|
||||||
rows = table.rows;
|
|
||||||
/* Loop through all table rows (except the
|
|
||||||
first, which contains table headers): */
|
|
||||||
for (i = 1; i < (rows.length - 1); i++) {
|
|
||||||
// Start by saying there should be no switching:
|
|
||||||
shouldSwitch = false;
|
|
||||||
/* Get the two elements you want to compare,
|
|
||||||
one from current row and one from the next: */
|
|
||||||
x = rows[i].getElementsByTagName("TD")[n];
|
|
||||||
y = rows[i + 1].getElementsByTagName("TD")[n];
|
|
||||||
/* Check if the two rows should switch place,
|
|
||||||
based on the direction, asc or desc: */
|
|
||||||
if (dir == "asc") {
|
|
||||||
if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) {
|
|
||||||
// If so, mark as a switch and break the loop:
|
|
||||||
shouldSwitch = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} else if (dir == "desc") {
|
|
||||||
if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) {
|
|
||||||
// If so, mark as a switch and break the loop:
|
|
||||||
shouldSwitch = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (shouldSwitch) {
|
|
||||||
/* If a switch has been marked, make the switch
|
|
||||||
and mark that a switch has been done: */
|
|
||||||
rows[i].parentNode.insertBefore(rows[i + 1], rows[i]);
|
|
||||||
switching = true;
|
|
||||||
// Each time a switch is done, increase this count by 1:
|
|
||||||
switchcount ++;
|
|
||||||
} else {
|
|
||||||
/* If no switching has been done AND the direction is "asc",
|
|
||||||
set the direction to "desc" and run the while loop again. */
|
|
||||||
if (switchcount == 0 && dir == "asc") {
|
|
||||||
dir = "desc";
|
|
||||||
switching = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<h2>Video:</h2>
|
|
||||||
<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>
|
|
||||||
<div class="embed-container"> <iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/ho8-vK0L1_8" frameborder="0" allowfullscreen=""></iframe></div>
|
|
||||||
|
|
||||||
<h2>Fotos:</h2>
|
|
||||||
<div class="gallery" id="testgal"><a href="/assets/img/albums/testgal/altman12.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/altman12.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/baerbock-selenskij2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/baerbock-selenskij2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/baerbock-un2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/baerbock-un2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/baerbock2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/baerbock2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/bourla2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/bourla2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/fink-wef2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/fink-wef2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/frank-elisabeth2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/frank-elisabeth2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/frank12.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/frank12.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/gates2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/gates2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/höcke2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/höcke2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/lauterbach2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/lauterbach2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/leyen-bourla2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/leyen-bourla2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/leyen2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/leyen2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/merz2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/merz2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/musk2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/musk2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/papperger2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/papperger2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/putin2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/putin2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/rutte-willem2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/rutte-willem2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/rutte2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/rutte2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/schmidt2.jpg" data-sub-html="Google chairman Eric Schmidt greets with members of media before the press conference at Google Korea office in Seoul, South Korea, Tuesday, Nov. 8, 2011. Google chairman Eric Schmidt has mourned Steve Jobs' death but defended Google as a great innovator despite the Apple co-founder's allegations that the Internet search giant stole innovations from the iPhone. (AP Photo/Lee Jin-man)">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/schmidt2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/scholz2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/scholz2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/schwab-merkel-wef2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/schwab-merkel-wef2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/schwab2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/schwab2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/strack2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/strack2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/söder2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/söder2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/tedros2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/tedros2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/thiel2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/thiel2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/trump-vereidigung2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/trump-vereidigung2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/trump2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/trump2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/trump22.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/trump22.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/wagenknecht2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/wagenknecht2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/wahlurne2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/wahlurne2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/weidel2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/weidel2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/willem-beatrix2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/willem-beatrix2.jpg" />
|
|
||||||
</a></div>
|
|
||||||
<script>
|
|
||||||
lightGallery(document.getElementById('testgal'), {
|
|
||||||
plugins: [lgZoom, lgThumbnail, lgHash, lgShare],
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
Before Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 91 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 159 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 104 KiB |
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 178 KiB |
|
Before Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 110 KiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 100 KiB |
|
Before Width: | Height: | Size: 555 KiB |
|
Before Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 730 KiB |
|
Before Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 260 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
251
index.html
@ -26,9 +26,6 @@
|
|||||||
|
|
||||||
<li class="p-20250202herald"><a href="#20250202herald">Ankündigung: erster Termin am 22.2.2025 in Dresden</a></li>
|
<li class="p-20250202herald"><a href="#20250202herald">Ankündigung: erster Termin am 22.2.2025 in Dresden</a></li>
|
||||||
|
|
||||||
|
|
||||||
<li class="p-20250202gallery"><a href="#20250202gallery">Ergebnisse und Eindrücke vom 22.2.2025</a></li>
|
|
||||||
|
|
||||||
<li class="p-about"><a href="#about">Wer sind wir?</a></li>
|
<li class="p-about"><a href="#about">Wer sind wir?</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -133,254 +130,6 @@ danach werden die Stimmen ausgezählt und
|
|||||||
<hr/>
|
<hr/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div id="20250202gallery" class="section p-20250202gallery">
|
|
||||||
|
|
||||||
<div class="subtlecircle sectiondivider">
|
|
||||||
<h1 class="icon-title">Ergebnisse und Eindrücke vom 22.2.2025</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="container ">
|
|
||||||
<p>So könnte ein Bericht vom Event aussehen:</p>
|
|
||||||
|
|
||||||
<h2>Stimmen:</h2>
|
|
||||||
<table id="count1">
|
|
||||||
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
|
|
||||||
|
|
||||||
<th onclick="sortTable(0)">Name</th>
|
|
||||||
|
|
||||||
|
|
||||||
<th onclick="sortTable(1)">Stimmen</th>
|
|
||||||
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Bill Gates
|
|
||||||
</td><td class="col2">
|
|
||||||
11
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Tedros
|
|
||||||
</td><td class="col2">
|
|
||||||
2
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Merz
|
|
||||||
</td><td class="col2">
|
|
||||||
4
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Musk
|
|
||||||
</td><td class="col2">
|
|
||||||
4
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Höcke
|
|
||||||
</td><td class="col2">
|
|
||||||
2
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Habeck
|
|
||||||
</td><td class="col2">
|
|
||||||
5
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Baerbock
|
|
||||||
</td><td class="col2">
|
|
||||||
3
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr class="row1">
|
|
||||||
<td class="col1">
|
|
||||||
Franziskus
|
|
||||||
</td><td class="col2">
|
|
||||||
1
|
|
||||||
</td></tr>
|
|
||||||
|
|
||||||
|
|
||||||
</table>
|
|
||||||
<script>
|
|
||||||
function sortTable(n) {
|
|
||||||
var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0;
|
|
||||||
table = document.getElementById("count1");
|
|
||||||
switching = true;
|
|
||||||
// Set the sorting direction to ascending:
|
|
||||||
dir = "asc";
|
|
||||||
/* Make a loop that will continue until
|
|
||||||
no switching has been done: */
|
|
||||||
while (switching) {
|
|
||||||
// Start by saying: no switching is done:
|
|
||||||
switching = false;
|
|
||||||
rows = table.rows;
|
|
||||||
/* Loop through all table rows (except the
|
|
||||||
first, which contains table headers): */
|
|
||||||
for (i = 1; i < (rows.length - 1); i++) {
|
|
||||||
// Start by saying there should be no switching:
|
|
||||||
shouldSwitch = false;
|
|
||||||
/* Get the two elements you want to compare,
|
|
||||||
one from current row and one from the next: */
|
|
||||||
x = rows[i].getElementsByTagName("TD")[n];
|
|
||||||
y = rows[i + 1].getElementsByTagName("TD")[n];
|
|
||||||
/* Check if the two rows should switch place,
|
|
||||||
based on the direction, asc or desc: */
|
|
||||||
if (dir == "asc") {
|
|
||||||
if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) {
|
|
||||||
// If so, mark as a switch and break the loop:
|
|
||||||
shouldSwitch = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} else if (dir == "desc") {
|
|
||||||
if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) {
|
|
||||||
// If so, mark as a switch and break the loop:
|
|
||||||
shouldSwitch = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (shouldSwitch) {
|
|
||||||
/* If a switch has been marked, make the switch
|
|
||||||
and mark that a switch has been done: */
|
|
||||||
rows[i].parentNode.insertBefore(rows[i + 1], rows[i]);
|
|
||||||
switching = true;
|
|
||||||
// Each time a switch is done, increase this count by 1:
|
|
||||||
switchcount ++;
|
|
||||||
} else {
|
|
||||||
/* If no switching has been done AND the direction is "asc",
|
|
||||||
set the direction to "desc" and run the while loop again. */
|
|
||||||
if (switchcount == 0 && dir == "asc") {
|
|
||||||
dir = "desc";
|
|
||||||
switching = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<h2>Video:</h2>
|
|
||||||
<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>
|
|
||||||
<div class="embed-container"> <iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/ho8-vK0L1_8" frameborder="0" allowfullscreen=""></iframe></div>
|
|
||||||
|
|
||||||
<h2>Fotos:</h2>
|
|
||||||
<div class="gallery" id="testgal"><a href="/assets/img/albums/testgal/altman12.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/altman12.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/baerbock-selenskij2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/baerbock-selenskij2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/baerbock-un2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/baerbock-un2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/baerbock2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/baerbock2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/bourla2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/bourla2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/fink-wef2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/fink-wef2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/frank-elisabeth2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/frank-elisabeth2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/frank12.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/frank12.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/gates2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/gates2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/höcke2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/höcke2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/lauterbach2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/lauterbach2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/leyen-bourla2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/leyen-bourla2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/leyen2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/leyen2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/merz2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/merz2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/musk2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/musk2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/papperger2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/papperger2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/putin2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/putin2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/rutte-willem2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/rutte-willem2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/rutte2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/rutte2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/schmidt2.jpg" data-sub-html="Google chairman Eric Schmidt greets with members of media before the press conference at Google Korea office in Seoul, South Korea, Tuesday, Nov. 8, 2011. Google chairman Eric Schmidt has mourned Steve Jobs' death but defended Google as a great innovator despite the Apple co-founder's allegations that the Internet search giant stole innovations from the iPhone. (AP Photo/Lee Jin-man)">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/schmidt2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/scholz2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/scholz2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/schwab-merkel-wef2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/schwab-merkel-wef2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/schwab2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/schwab2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/strack2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/strack2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/söder2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/söder2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/tedros2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/tedros2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/thiel2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/thiel2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/trump-vereidigung2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/trump-vereidigung2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/trump2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/trump2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/trump22.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/trump22.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/wagenknecht2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/wagenknecht2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/wahlurne2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/wahlurne2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/weidel2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/weidel2.jpg" />
|
|
||||||
</a><a href="/assets/img/albums/testgal/willem-beatrix2.jpg" data-sub-html="">
|
|
||||||
<img src="/assets/img/thumbnails/testgal/willem-beatrix2.jpg" />
|
|
||||||
</a></div>
|
|
||||||
<script>
|
|
||||||
lightGallery(document.getElementById('testgal'), {
|
|
||||||
plugins: [lgZoom, lgThumbnail, lgHash, lgShare],
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<!-- ⁂ -->
|
|
||||||
<div style="text-align: center;">⸪</div>
|
|
||||||
<hr/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="about" class="section p-about">
|
<div id="about" class="section p-about">
|
||||||
<h1 id="über-uns">Über uns</h1>
|
<h1 id="über-uns">Über uns</h1>
|
||||||
|
|||||||