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.
|
|
|
|
{% extends "container.html" %}
|
|
|
|
|
{% block corps %}
|
|
|
|
|
<div class="container marketing" style="margin-top: 50px;">
|
|
|
|
|
<h1>Actes de {{duke_name[0][0]}}</h1>
|
|
|
|
|
<div class="timeline-princier">
|
|
|
|
|
{% for id in lst_id %}
|
|
|
|
|
<div class="entry-princier">
|
|
|
|
|
<div class="title-princier">
|
|
|
|
|
<h3>{{id[0]}}</h3>
|
|
|
|
|
{% if id[3] != 'NS' %}
|
|
|
|
|
<p>
|
|
|
|
|
{{id[3]}}.
|
|
|
|
|
</p>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<p>{{id[5]}}.</p>
|
|
|
|
|
<p>{{id[4]}}.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pboly">
|
|
|
|
|
<p class="chrono-p"><a href="{{url_for('main.acte', prince=duke_name[0][1], acte_id=id[1])}}">{{id[2]}}.</a></p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
</div><!-- /.container -->
|
|
|
|
|
{% endblock %}
|