You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
herbarium/templates/species/index.html.twig

30 lines
800 B

{% extends 'base.html.twig' %}
{% block title %}Herbarium - Espèces{% endblock %}
{% block body %}
<style>
.example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
.example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
</style>
<div class="example-wrapper">
<h1>Liste des espèces</h1>
<dl>
{% for specie in species %}
<dt>
<a href={{ url('app_species') ~ '/' ~ specie.getId }}>
🌿 {{ specie.getVernacularName }}
</a>
</dt>
<dd >
🔬 Nom Scientifique : {{ specie.getScientificName }}<br/>
📍 Region : {{ specie.getRegion }}
</dd><br/>
{% endfor %}
</dl>
</div>
{% endblock %}