You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
394 B
HTML
13 lines
394 B
HTML
{% extends "container.html" %}
|
|
{% block corps %}
|
|
<div class="container marketing" style="margin-top: 50px;">
|
|
<h1>Corpus</h1>
|
|
<p>Corpus disponibles :</p>
|
|
<ul>
|
|
{% for house in houses %}
|
|
<li><a href="{{url_for('main.actes', house=house.name)}}">Actes des ducs et duchesses {{ house.particle }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|