27 lines
		
	
	
		
			343 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			343 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'up_squelette.html' %}
 | 
						|
 | 
						|
 | 
						|
{% block main %}
 | 
						|
 | 
						|
<div class="container theme-showcase" role="main">
 | 
						|
 | 
						|
<br />
 | 
						|
 | 
						|
{% if fichiers %}
 | 
						|
 | 
						|
 | 
						|
    <div id="gallery">
 | 
						|
    {% for image in fichiers %}
 | 
						|
 | 
						|
       <img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded" alt=""/>
 | 
						|
 | 
						|
    {% endfor %}
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
{% endif %}
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %}
 |