#2090 index lieu
This commit is contained in:
@@ -6,14 +6,16 @@
|
|||||||
|
|
||||||
<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>{{ content.country }}</p>
|
<h2 v-html="content.rubrique" />
|
||||||
<p>{{ content.ville }}</p>
|
<p><em>{{ content.type }}</em></p>
|
||||||
<p>{{ content.type }}</p>
|
<p v-if="content.country"><span class="label">Pays :</span> {{ content.country }}</p>
|
||||||
|
<p v-if="content.ville"><span class="label">Ville :</span> {{ content.ville }}</p>
|
||||||
|
|
||||||
<section class="notes">
|
<section v-if="content.notes && content.notes.length" class="notes">
|
||||||
|
<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.autorities.length" class="autorities">
|
<section v-if="content.autorities && content.autorities.length" class="autorities">
|
||||||
<h3>Autorities</h3>
|
<h3>Autorities</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="(aut, i) in content.autorities" :key="i">
|
<li v-for="(aut, i) in content.autorities" :key="i">
|
||||||
|
|||||||
@@ -25,7 +25,10 @@
|
|||||||
<h3>Autorités</h3>
|
<h3>Autorités</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="(aut, i) in content.autorities" :key="i">
|
<li v-for="(aut, i) in content.autorities" :key="i">
|
||||||
<a :href="aut.identifier" target="_blanck">{{ aut.autority }}</a>
|
<a :href="aut.identifier" target="_blanck">
|
||||||
|
{{ aut.autority }}
|
||||||
|
<span class="mdi mdi-open-in-new" />
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
Reference in New Issue
Block a user