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.
webapp/app/templates/prince_corpus.html

34 lines
1.8 KiB
HTML

2 years ago
{% extends "container.html" %}
{% block corps %}
<div class="container marketing" style="margin-top: 50px;">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{url_for('main.corpora_all')}}">Corpus</a></li>
<li class="breadcrumb-item"><a href="{{url_for('main.actes', house=house)}}">{{house | capitalize}}</a></li>
<li class="breadcrumb-item active" aria-current="page">{{duke_name}}</li>
2 years ago
</ol>
</nav>
<h1 style="text-align: center; padding-bottom: 5%;">Actes de {{duke_name}}</h1>
2 years ago
<div class="timeline-princier">
{% for acte in actes %}
2 years ago
<div class="entry-princier">
<div class="title-princier">
<h3>{{ acte['date'] }}</h3>
2 years ago
</div>
<div class="pboly">
<p class="chrono-p font-weight-bold"><a href="{{url_for('main.acte', house=house, prince=prince_code, dateitem=dateitem)}}">{{ acte['analysis'] }}.</a></p>
2 years ago
<p style="margin-bottom: 5%">
{% if acte['place'] != 'NS' %}
<span class="badge badge-pill badge" style="background-color: #284AA7; color: white; font-size: small;">{{ acte['place'] }}</span>
2 years ago
{% endif %}
<span class="badge badge-pill badge" style="background-color: #A7288A; color: white; font-size: small;">{{ acte['diplo_state'] }}</span>
<span class="badge badge-pill badge" style="background-color: #A78528; color: white; font-size: small;">{{ acte['diplo_type'] }}</span>
2 years ago
</p>
</div>
</div>
{% endfor %}
</div>
</div><!-- /.container -->
{% endblock %}