erratum/content/mobs/bestiaire/all.md
Kazhnuz fcea7f2e4b
All checks were successful
continuous-integration/drone/push Build is passing
fix: utilisation des rangs plutôt que des niveaux
2024-09-02 15:51:37 +02:00

34 lines
691 B
Markdown

---
layout: layouts/base.njk
parent: Bestiaire
---
# Toutes les créatures
## Liste des mobs
<div id="dataTable">
<table class="dataTables">
<thead>
<tr>
<th>Rang</th>
<th>Nom</th>
<th>Type</th>
<th>Catégorie</th>
</tr>
</thead>
<tbody>
{%- for creature in creatures -%}
<tr>
<td><span aria-hidden="true" style="opacity:0;position:absolute;">({{ creature.level }})</span> {{ creature.rang }} </td>
<td> <a href="/mobs/bestiaire/creatures/{{ creature.name | slugify }}">{{ creature.name }}</a> </td>
<td>{{ creature.type }} </td>
<td>{{ creature.categorie }} </td>
</tr>
{%- endfor -%}
<tbody>
</table>
</div>