erratum/content/mobs/bestiaire/list.md
Kazhnuz b1b481536e
All checks were successful
continuous-integration/drone/push Build is passing
feat: ajout d'un systeme de bestiaire
2024-08-15 10:42:55 +02:00

42 lines
No EOL
777 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>Niveau</th>
<th>Nom</th>
<th>Type</th>
<th>Catégorie</th>
</tr>
</thead>
<tbody>
{%- for creature in bestiaire.list -%}
<tr>
<td>{{ creature.level }} </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>