#2089 Étiquettes index de personnes
This commit is contained in:
@@ -511,6 +511,10 @@ section[role="main-content"]{
|
|||||||
|
|
||||||
span.form{
|
span.form{
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
margin-top: 0;
|
||||||
|
font-size: 1.134em;
|
||||||
|
line-height: $base-line * 0.7;
|
||||||
|
// margin-bottom: $base-line;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -583,6 +587,10 @@ section[role="main-content"]{
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
a{
|
a{
|
||||||
|
|
||||||
|
font-style: italic;
|
||||||
|
margin-top: 0;
|
||||||
|
font-size: 1.134em;
|
||||||
|
line-height: $base-line * 0.7;
|
||||||
span.edition{
|
span.edition{
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
@click.prevent="onGoToText"
|
@click.prevent="onGoToText"
|
||||||
@keyup.enter="onGoToText"
|
@keyup.enter="onGoToText"
|
||||||
>
|
>
|
||||||
<span v-html="oc.title" /> <span v-if="oc.ed.uuid" class="edition">( {{ editionTitle }} )</span>
|
<span v-html="oc.title" /> <span v-if="oc.ed.uuid" class="edition">({{ editionTitle }})</span>
|
||||||
<!-- <span v-if="oc.form" class="form">( "{{ oc.form }}" )</span> -->
|
<!-- <span v-if="oc.form" class="form">( "{{ oc.form }}" )</span> -->
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
@click.prevent="onGoToText($event, ed.item, oc.uuid, oc.ids[0])"
|
@click.prevent="onGoToText($event, ed.item, oc.uuid, oc.ids[0])"
|
||||||
@keyup.enter="onGoToText($event, ed.item, oc.uuid, oc.ids[0])"
|
@keyup.enter="onGoToText($event, ed.item, oc.uuid, oc.ids[0])"
|
||||||
>
|
>
|
||||||
<span v-html="oc.title" /> <span v-if="oc.form" class="form">( "{{ oc.form }}" )</span>
|
<span v-html="oc.title" /> <span v-if="oc.form" class="form" v-html="'( «'+oc.form+'» )'" />
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
<!-- <span
|
<!-- <span
|
||||||
|
|||||||
+9
-21
@@ -6,33 +6,21 @@
|
|||||||
|
|
||||||
<template v-if="content" v-slot:header>
|
<template v-if="content" v-slot:header>
|
||||||
<h1 v-html="content.title" />
|
<h1 v-html="content.title" />
|
||||||
<p>
|
<h2 v-html="content.rubrique" />
|
||||||
{{ content.birthDate }}, {{ content.birthPlace }}<br>
|
<p v-if="content.occupation"><em>{{ content.occupation }}</em></p>
|
||||||
{{ content.deathDate }}, {{ content.deathPlace }}
|
<p><span class="label">Nom : </span>{{ content.surname }}, {{ content.surname }}</p>
|
||||||
|
<p><span class="label">Prénom : </span>{{ content.forename }}, {{ content.forename }}</p>
|
||||||
|
<p><span class="label">Sexe : </span>
|
||||||
|
<span v-if="content.sexe === 1">Masculin</span>
|
||||||
|
<span v-if="content.sexe === 0">Feminin</span>
|
||||||
</p>
|
</p>
|
||||||
<section v-if="content.occupation">
|
<p><span class="label">Naissance : </span>{{ content.birthPlace }}, {{ content.birthDate }}</p>
|
||||||
<h3>Occupation</h3>
|
<p><span class="label">Mort : </span>{{ content.deathPlace }}, {{ content.deathDate }}</p>
|
||||||
<p>{{ content.occupation }}</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section v-if="content.note && content.note.length > 0" class="notes">
|
<section v-if="content.note && content.note.length > 0" class="notes">
|
||||||
<h3>Notes</h3>
|
<h3>Notes</h3>
|
||||||
<div v-for="(note, i) in content.note" :key="i" class="note" v-html="note" />
|
<div v-for="(note, i) in content.note" :key="i" class="note" v-html="note" />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section v-if="content.attestedForms && content.attestedForms.length > 0" class="attested-forms">
|
|
||||||
<h3>formes attestées</h3>
|
|
||||||
<ul>
|
|
||||||
<li v-for="(af, i) in content.attestedForms" :key="i">
|
|
||||||
<span class="form">{{ af.title }}</span>
|
|
||||||
<!-- <ul>
|
|
||||||
<li v-for="(uuid, j) in af.uuid" :key="j">
|
|
||||||
<a href="#">{{ uuid }}</a>
|
|
||||||
</li>
|
|
||||||
</ul> -->
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
<section v-if="content.autorities && content.autorities.length > 0" class="autorities">
|
<section v-if="content.autorities && content.autorities.length > 0" class="autorities">
|
||||||
<h3>Autorités</h3>
|
<h3>Autorités</h3>
|
||||||
<ul>
|
<ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user