12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <div class="titre_nsb">
- <h1>Ressources</h1>
- <div class="test" >
- <svg width="100%" height="0.5rem">
- <rect class="after-h1" width="100%" height="100%" style="fill:rgb(0,0,0)" />
- </svg>
- </div>
- <!-- <div class="after-h1-finish">
- <svg width="50%" height="0.5rem">
- <rect width="100%" height="100%" style="fill:rgb(0,0,0);stroke-width:3;stroke:rgb(0,0,0)" />
- </svg>
- </div> -->
- </div>
- {{ content|raw }}
- <div class="features {{ page.header.class}}">
- <div class="feature-items">
- {% for rapport in page.header.rapports %}
- <div class="feature">
- {% if rapport.couverture and rapport.pdf %}
- <a href="{{page.media[rapport.pdf].url|e }}" download >
- <img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
- </a>
- {% endif %}
- {% if rapport.titre_du_rapport %}
- <h4>{{ rapport.titre_du_rapport }}</h4>
- {% endif %}
- {% if rapport.texte_de_presentation %}
- <p>{{ rapport.texte_de_presentation|markdown }}</p>
- {% endif %}
- </div>
- {% endfor %}
- </div>
- </div>
|