-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbilder.php
More file actions
executable file
·40 lines (35 loc) · 1.16 KB
/
bilder.php
File metadata and controls
executable file
·40 lines (35 loc) · 1.16 KB
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
<?php include 'includes/head.php'; ?>
<h1>Impressionen aus dem Rettungs-Corps</h1>
<p>
Alle Fotos findest du auf <a href="https://www.flickr.com/photos/129011464@N05/sets/"
target="_blank">flickr</a>
</p>
<div id="gallery" style="height: 800px"></div>
<p class="pull-right">
Alle Fotos findest du auf <a href="https://www.flickr.com/photos/129011464@N05/sets/"
target="_blank">flickr</a>
</p>
</div>
<footer>
<div class="container">
<p class="center-block text-muted">© Rettungs-Corps der Stadt St. Gallen 2014</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/bootstrap/js/bootstrap.min.js"></script>
<script src="/gallery/gallery.js"></script>
<script src="/gallery/flickr.min.js"></script>
<script>
Gallery.loadTheme('/gallery/gallery.skin.js');
Gallery.run('#gallery', {
flickr: 'user:129011464@N05',
flickrOptions: {
imageSize: 'big',
thumbSize: 'medium',
sort: 'date-taken-desc',
max: 100
}
});
</script>
</body>
</html>