gallery blueimp
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user