erratum/content/mobs/bestiaire/list.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

42 lines
No EOL
866 B
Markdown

---
pagination:
data: bestiaires
size: 1
alias: bestiaire
permalink: "mobs/bestiaire/{{ bestiaire.folder }}/"
layout: layouts/base.njk
parent: Bestiaire
title: {{ bestiaire.nom }}
---
# {{ bestiaire.nom }}
{{ bestiaire.description }}
## 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 bestiaire.list -%}
<tr>
<td><span aria-hidden="true" style="opacity:0;position:absolute;">({{ creature.level }})</span> {{ creature.rang }} </td>
<td> <a href="/mobs/bestiaire/creatures/{{ creature.nom | slugify }}">{{ creature.nom }}</a> </td>
<td>{{ creature.type }} </td>
<td>{{ creature.categorie }} </td>
</tr>
{%- endfor -%}
<tbody>
</table>
</div>