deployment ready?

This commit is contained in:
root
2020-09-25 09:22:39 +00:00
parent c077139e6d
commit b1fc02e809
11 changed files with 31610 additions and 96 deletions

View File

@@ -1,9 +1,7 @@
{# -*-jinja2-*- #}
{% extends "layoutfetbs3.html" %}
{% extends "layout.html" %}
{% block head %}
<script src="/galleries/js/blueimp-gallery.min.js"></script>
<script src="/galleries/init.js"></script>
{% endblock %}
@@ -12,6 +10,7 @@
<h1>{{post.title}}</h1>
<small> von {{post.author}} </small>
{{post.html | safe}}
{% if post.links.images |length > 0 %}
<hr/>
@@ -28,16 +27,17 @@
<ol class="indicator"></ol>
</div>
<div id="links">
<div id="links" class="grid-x">
{% for d in post.links.images %}
<a href="{{d.url}}" title="{{d.title}}">
<a id="{{d.url | slug}}" href="{{d.url}}" title="{{d.title}}" class="cell medium-3 small-12 large-2">
<img src="{{d.thumb_url}}" alt="{{d.title}}" class="img-thumbnail" />
</a>
{% endfor %}
</div>
{% endif %}
{% endblock %}