This commit is contained in:
2020-07-12 14:57:33 +02:00
parent b260758519
commit 64c39862db
4 changed files with 25 additions and 33 deletions
+5 -2
View File
@@ -14,13 +14,16 @@
<span v-if="indexitem == 'loading'">Loading ...</span>
<template v-if="indexitem !== 'loading'">
<h1 v-html="indexitem.title" />
<p class="birthdeath">
<p v-if="indexitem.birthDate" class="birthdeath">
<time>{{ indexitem.birthDate }}</time>, <span class="place">{{ indexitem.birthPlace }}</span><br>
<time>{{ indexitem.deathDate }}</time>, <span class="place">{{ indexitem.deathPlace }}</span>
</p>
<p class="occupation">
<p v-if="indexitem.occupation" class="occupation">
{{ indexitem.occupation }}
</p>
<p v-if="indexitem.type" class="type">
{{ indexitem.type }}
</p>
</template>
</aside>