You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
503 B
22 lines
503 B
6 years ago
|
{% extends "layout.html" %}
|
||
|
{% block content %}
|
||
|
<div class="description">
|
||
|
<h2 style = "text-align: center;">Write something very interesting here.</h2>
|
||
|
|
||
|
<!--passing files-->
|
||
|
<p>{{ file }}</p>
|
||
|
|
||
|
<!-- <img src="{{ url_for('static', filename='/files/001/DwySYC4X4AESeRh.jpg') }}">
|
||
|
-->
|
||
|
<!--passing an array-->
|
||
|
<!-- {% for v in listingdirectories %}
|
||
|
<div>{{ v }}</div>
|
||
|
{% endfor %}
|
||
|
{% for f in listingfiles %}
|
||
|
<div>{{ f }}</div>
|
||
|
{% endfor %}
|
||
|
-->
|
||
|
|
||
|
</div>
|
||
|
{% endblock %}
|