34 lines
907 B
Handlebars

<section id="home"
class="relative overflow-hidden z-10 pt-[120px] pb-[110px] md:pt-[150px] md:pb-[120px] xl:pt-[180px] xl:pb-[160px] 2xl:pt-[210px] 2xl:pb-[200px]">
<div class="container">
<div class="flex flex-wrap mx-[-16px]">
<div class="w-full px-4">
<table class="text-center">
<!-- Statistiques -->
<tr>
<th>Article 1</th>
<th>Article 2</th>
</tr>
<tbody>
{{#each historiqueData }}
<tr>
<td>{{this.article1}}</td>
<td>{{this.article2}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
</div>
</section>