51 lines
1.5 KiB
HTML
Raw Permalink Normal View History

{% if settings.settings.light_mode %}
{% set pathstatic = "." %}
{% else %}
{% set pathstatic = ".." %}
{% endif %}
2016-05-26 17:04:57 +02:00
<!DOCTYPE html>
<html>
2016-11-04 12:55:02 +01:00
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="{{ pathstatic }}/static/css/fonts.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="{{ pathstatic }}/static/css/style-page.css" media="screen,projection"/>
2016-05-26 17:04:57 +02:00
2016-11-04 12:55:02 +01:00
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
{% if gallery.description %}
<meta name="description" content="{{ gallery.description }}" />
{% endif %}
{% if gallery.lang %}
<meta name="language" content="{{ gallery.lang }}" />
{% endif %}
{% if settings.settings.og %}
{% include "opengraph.html" %}
{% endif %}
2016-05-26 17:04:57 +02:00
2016-11-04 12:55:02 +01:00
<title>{{ gallery.title }} · {{ settings.title }}</title>
</head>
2016-05-26 17:04:57 +02:00
2016-11-04 12:55:02 +01:00
<body>
<div id="wrapper">
{% for section in gallery.sections %}
{% include "sections/" + section.type + ".html" %}
{% endfor %}
2016-05-26 17:04:57 +02:00
2016-11-04 12:55:02 +01:00
{% if settings.share %}
{% include "share.html" %}
{% endif %}
<div class="back-to-home">
<hr>
<a href="../../">
<div id="logo" src="./static/img/logo.svg">
HOME
</div>
</a>
</div>
</div>
{% include "footer.html" %}
</body>
2016-05-26 17:04:57 +02:00
</html>