2015-12-08 08:40:34 +01:00
<!DOCTYPE html>
< html >
< head >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta charset = "UTF-8" >
2016-01-12 14:33:15 +01:00
< link type = "text/css" rel = "stylesheet" href = "../static/css/fonts.css" media = "screen,projection" / >
2015-12-08 08:40:34 +01:00
< 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" / >
2015-12-10 05:49:04 +01:00
< link type = "text/css" rel = "stylesheet" href = "../static/css/panorama_viewer.css" media = "screen,projection" / >
2015-12-08 08:40:34 +01:00
<!-- Let browser know website is optimized for mobile -->
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
2016-01-12 18:18:35 +01:00
< title > {{ gallery.title }} · {{ settings.title }}< / title >
2015-12-08 08:40:34 +01:00
< / head >
< body >
{% for section in gallery.sections %}
{% include "sections/" + section.type + ".html" %}
{% endfor %}
2015-12-08 09:30:22 +01:00
< div class = "back-to-home" >
< hr >
2015-12-09 09:57:21 +01:00
< a href = "../" >
2015-12-08 09:30:22 +01:00
< div id = "logo" src = "./../static/img/logo.svg" / >
HOME
< / div >
< / a >
< / div >
2015-12-10 05:49:04 +01:00
< script type = "text/javascript" src = "../static/js/jquery-2.1.4.min.js" charset = "utf-8" > < / script >
2016-02-22 16:29:36 +01:00
< script type = "text/javascript" src = "../static/js/materialize.min.js" charset = "utf-8" > < / script >
2015-12-08 08:40:34 +01:00
< script type = "text/javascript" src = "../static/js/baguetteBox.min.js" charset = "utf-8" > < / script >
2015-12-10 05:49:04 +01:00
< script type = "text/javascript" src = "../static/js/jquery.panorama_viewer.min.js" charset = "utf-8" > < / script >
2015-12-08 08:40:34 +01:00
< script type = "text/javascript" charset = "utf-8" >
2015-12-10 08:05:07 +01:00
$(function() {
baguetteBox.run(".baguette", {});
$(".panorama").panorama_viewer({
repeat: true,
direction: "horizontal",
animationTime: 150,
easing: "linear",
overlay: true
});
});
2016-02-22 16:29:36 +01:00
$(document).ready(function(){
$('.scrollspy').scrollSpy();
});
2015-12-08 08:40:34 +01:00
< / script >
< footer >
2016-01-18 00:15:18 +01:00
< p > Generated using < a href = "https://github.com/psycojoker/prosopopee" > Prosopopée< / a > · content under < a href = "https://creativecommons.org/licenses/by-sa/3.0/" > CC-BY-SA< / a > · atom logo by < a href = "https://thenounproject.com/jjjon/" > Jonathan Li< / a > under < a href = "https://creativecommons.org/licenses/by/3.0/" > CC-BY< / a > < / p >
2015-12-08 08:40:34 +01:00
< / footer >
< / body >
< / html >