gallery blueimp

This commit is contained in:
Andreas Stephanides
2017-09-01 22:52:26 +02:00
parent 2d0f074315
commit bfdeda27be
43 changed files with 14849 additions and 107 deletions

View File

@@ -1,15 +1,20 @@
{% extends "layout.html" %}
{% block content %}
<LINK href="{{ url_for('static', filename='gallery/css/blueimp-gallery.min.css')}}" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/Gallery/css/blueimp-gallery.min.css">
<script src="/Gallery/js/blueimp-gallery.min.js"></script>
<script src="{{ url_for('static', filename='gallery/js/blueimp-gallery.min.js')}}"></script>
<style>
#links a {
margin-left: -2px;
margin-right:-2px;
}
</style>
<div id="blueimp-gallery" class="blueimp-gallery">
</style>
<h1>{{post.title}}</h1>
{{ post.html|safe }}
<div id="blueimp-gallery" class="blueimp-gallery">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev"></a>
@@ -19,11 +24,10 @@
<ol class="indicator"></ol>
</div>
<h1>{{post.title}}</h1>
<div id="links">
{% for d in il %}
<a href="/{{pth}}/{{d}}">
<img src="/{{pth}}/{{d}}" width="80" height="80" alt="">
{% for d in filelists.image_list %}
<a href="{{d.url}}">
<img src="{{d.url}}" width="80" height="80" alt="">
</a>
{% endfor %}
</div>