2015-12-08 08:40:34 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2016-04-06 20:34:05 +02:00
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link type="text/css" rel="stylesheet" href="../static/css/fonts.css" media="screen,projection"/>
|
|
|
|
<link type="text/css" rel="stylesheet" href="../static/css/style-page.css" media="screen,projection"/>
|
|
|
|
<link type="text/css" rel="stylesheet" href="../static/css/baguetteBox.min.css" media="screen,projection"/>
|
|
|
|
<link type="text/css" rel="stylesheet" href="../static/css/panorama_viewer.css" media="screen,projection"/>
|
2015-12-08 08:40:34 +01:00
|
|
|
|
2016-04-06 20:34:05 +02:00
|
|
|
<!--Let browser know website is optimized for mobile-->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
<title>{{ gallery.title }} · {{ settings.title }}</title>
|
|
|
|
</head>
|
2015-12-08 08:40:34 +01:00
|
|
|
|
2016-04-06 20:34:05 +02:00
|
|
|
<body>
|
|
|
|
{% for section in gallery.sections %}
|
|
|
|
{% include "sections/" + section.type + ".html" %}
|
|
|
|
{% endfor %}
|
2015-12-08 08:40:34 +01:00
|
|
|
|
2016-04-06 20:34:05 +02:00
|
|
|
{% if settings.share %}
|
|
|
|
{% include "share.html" %}
|
|
|
|
{% endif %}
|
2015-12-08 09:30:22 +01:00
|
|
|
|
2016-04-06 20:34:05 +02:00
|
|
|
<div class="back-to-home">
|
|
|
|
<hr>
|
|
|
|
<a href="../">
|
|
|
|
<div id="logo" src="./../static/img/logo.svg"/>
|
|
|
|
HOME
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="../static/js/jquery-2.1.4.min.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript" src="../static/js/baguetteBox.min.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript" src="../static/js/jquery.panorama_viewer.min.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
$(function() {
|
|
|
|
baguetteBox.run(".baguette", {});
|
|
|
|
$(".panorama").panorama_viewer({
|
|
|
|
repeat: true,
|
|
|
|
direction: "horizontal",
|
|
|
|
animationTime: 150,
|
|
|
|
easing: "linear",
|
|
|
|
overlay: true
|
2015-12-10 08:05:07 +01:00
|
|
|
});
|
2016-04-06 20:34:05 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{% include "footer.html" %}
|
|
|
|
|
|
|
|
</body>
|
2015-12-08 08:40:34 +01:00
|
|
|
</html>
|