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.

26 lines
1.2 KiB
HTML

{% 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' %}
<h5>
3 years ago
<span class="badge badge-pill badge" style="background-color: #284AA7; color: white;">{{id[3]}}</span>
</h5>
{% endif %}
3 years ago
<h5><span class="badge badge-pill badge" style="background-color: #A7288A; color: white;">{{id[5]}}</span></h5>
<h5><span class="badge badge-pill badge" style="background-color: #A78528; color: white;">{{id[4]}}</span></h5>
</div>
<div class="pboly">
3 years ago
<p class="chrono-p font-weight-bold"><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 %}