54 lines
1.8 KiB
HTML
Raw Normal View History

2018-03-27 10:52:52 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="../static/css/materialize.css">
<link rel="stylesheet" href="../static/css/style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../static/css/font-awesome.css">
{% if settings.custom_css %}
<link type="text/css" rel="stylesheet" href="static/css/custom.css" media="screen,projection"/>
{% endif %}
{% if settings.rss -%}
<link rel="alternate" type="application/rss+xml" title="{{ settings.title }}" href="{{ settings.url }}/feed.xml" />
{% endif -%}
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{{ settings.title }} · {{ gallery.title }}</title>
</head>
2016-02-21 22:09:59 +01:00
2018-03-27 10:52:52 +02:00
<body>
2016-02-21 22:09:59 +01:00
2018-03-27 10:52:52 +02:00
<!-- Navbar and Header -->
<nav class="nav-extended nav-full-header z-depth-0 blue-grey darken-3">
<div class="nav-background">
{% if settings.cover %}
{% set image = Image(settings.cover) %}
{{ image.copy() }}
<div class="ea k" style="background-image: url('{{ image.generate_thumbnail("x1080") }}');"></div>
{% else %}
<div class="ea k"></div>
{% endif %}
</div>
<div class="nav-wrapper db">
<a href="../" class="brand-logo"><i class="fa fa-camera" aria-hidden="true"></i><p>{{ settings.title }}</p></a>
{% if settings.menu -%}
{% include 'menu.html' %}
{% endif -%}
</div>
2016-02-21 22:09:59 +01:00
2018-03-27 10:52:52 +02:00
<div class="nav-header valign-wrapper">
<div class="de">
<h1>{{ gallery.title }}</h1>
</div>
</div>
</nav>
2016-02-21 22:09:59 +01:00
2018-03-27 10:52:52 +02:00
{% for section in gallery.sections %}
{% include "sections/" + section.type + ".html" %}
{% endfor %}
2016-02-21 22:09:59 +01:00
2018-03-27 10:52:52 +02:00
{% include 'footer.html' %}
</body>
</html>