magcms/prosopopee/themes/light/templates/gallery-index.html

37 lines
1.1 KiB
HTML
Raw Normal View History

2016-05-26 17:04:57 +02:00
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
2016-05-27 11:57:03 +02:00
<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"/>
2016-05-26 17:04:57 +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>
<body>
<div id="wrapper">
{% for section in gallery.sections %}
{% include "sections/" + section.type + ".html" %}
{% endfor %}
{% if settings.share %}
{% include "share.html" %}
{% endif %}
<div class="back-to-home">
<hr>
2016-05-27 11:57:03 +02:00
<a href="../../">
<div id="logo" src="./static/img/logo.svg">
2016-05-26 17:04:57 +02:00
HOME
</div>
</a>
</div>
</div>
{% include "footer.html" %}
</body>
</html>