Hello,
I have a few files (odt and pdf, and images) in the page-folder of a 'subsection.md' file (theme quark).
My file 'subsection.html.twig' is :
{% embed 'sections.html.twig' %}
{% endembed %}
So I put this code in the file 'sections.html.twig' :
<ul>
{% for file in page.media.data %}
<li>
<div class="file-surround">
{{ file.link().html|raw }}{{ file.meta.title }}
</div>
</li>
{% endfor %}
</ul>
But it doesn't work... Can someone give me a little help ?
Thank you !