erratum/content/mobs/bestiaire/all.md

34 lines
691 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>Rang</th>
2024-08-15 10:42:55 +02:00
<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>
2024-08-15 10:42:55 +02:00
<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>