19 lines
No EOL
628 B
Markdown
19 lines
No EOL
628 B
Markdown
---
|
|
layout: layouts/layout.njk
|
|
eleventyNavigation:
|
|
key: Fiches à télécharger
|
|
parent: Base
|
|
order: 2
|
|
---
|
|
|
|
Vous pourrez trouver ici les différentes fiches de {{ jdr.nom }} à télécharger. Elles sont disponible au format .odt et .pdf, pour permettre une utilisation à l'informatique ou en impression :
|
|
|
|
<ul>
|
|
{%- for fiche in fiches %}
|
|
<li>
|
|
<strong>{{ fiche.title }} : </strong>
|
|
<a href="/download/fiche-{{ fiche.path }}.pdf" title="Télécharger au format pdf">pdf</a>,
|
|
<a href="/download/fiche-{{ fiche.path }}.odt" title="Télécharger au format odt">odt</a>
|
|
</li>
|
|
{%- endfor %}
|
|
</ul> |