42 lines
No EOL
866 B
Markdown
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> |