34 lines
No EOL
602 B
Markdown
34 lines
No EOL
602 B
Markdown
---
|
|
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> |