34 lines
483 B
HTML
34 lines
483 B
HTML
{% extends 'up_squelette.html' %}
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<div id="gallery center" style= "margin-top:10vw;">
|
|
{% if fichiers %}
|
|
|
|
|
|
|
|
{% for image in fichiers %}
|
|
<a href="/myfiles/images/{{ image }}" class="glightbox">
|
|
<img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded gallery" alt=""/>
|
|
</a>
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<h2> Il n'y a aucunes images dans votre gallerie </h2>
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|