erratum/content/mobs/bestiaire/all.md

34 lines
602 B
Markdown
Raw Normal View History

2024-08-15 10:42:55 +02:00
---
layout: layouts/base.njk
parent: Bestiaire
---
# Toutes les créatures
## Liste des mobs
<div id="dataTable">
<table class="dataTables">
<thead>
<tr>
<th>Niveau</th>
<th>Nom</th>
<th>Type</th>
<th>Catégorie</th>
</tr>
</thead>
<tbody>
{%- for creature in creatures -%}
<tr>
<td>{{ creature.level }} </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>