39 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2016-05-26 17:04:57 +02:00
{% extends "base.html" %}
{% if settings.settings.light_mode %}
{% set pathstatic = "../" %}
{% else %}
{% set pathstatic = "" %}
{% endif %}
2016-05-26 17:04:57 +02:00
{% block css %}
<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.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
{% endblock %}
{% block logo %}
<img id="logo" src="../static/img/logo.svg" />
{% endblock %}
{% block content %}
<section class="text">
<h2>{{ gallery.title }}</h2>
</section>
{% for section in gallery.sections %}
{% include "sections/" + section.type + ".html" %}
{% endfor %}
<div class="back-to-home">
<hr>
<a href="../index.html">
<div id="logo" src="{{ pathstatic }}/static/img/logo.svg"/>
2016-05-26 17:04:57 +02:00
HOME
</div>
</a>
</div>
<script type="text/javascript" src="{{ pathstatic }}static/js/jquery-2.1.4.min.js" charset="utf-8"></script>
2016-05-26 17:04:57 +02:00
{% endblock %}