Hello,
I'm trying to create automatically the list of files in a folder,
for example in /page/downloads/ where there is pdf, zip, or whatever.
Then I want to display a direct link to the listed files almost like :
{% for file in ??? | sort %}
<li><a href="{{ file.url }}">{{ file.??? }}</a></li>
{% endfor %}
Any suggestion ?
thanks for your help