This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/routes/people.vue

60 lines
1.7 KiB
Vue

<template>
<div class="container">
<h2>
<Icon v="user-friends"/>
<T>people.headerLonger</T>
</h2>
<section>
<T>people.intro</T>
</section>
<ul class="list-group">
<li v-for="person in people" class="list-group-item">
<h3 class="h4">
<strong>
{{person.name}}
</strong>
</h3>
<p>
{{person.description}}
</p>
<ul class="mb-2">
<li v-for="(pronouns, locale) in person.pronouns">
<T>people.languages.{{locale}}</T>:
<ul class="list-inline d-inline">
<li v-for="pronoun in pronouns" class="list-inline-item">
<LocaleLink :link="'/' + pronoun.link" :locale="locale">
<strong>{{pronoun.display}}</strong>
</LocaleLink>
</li>
</ul>
</li>
</ul>
<SourceList v-if="person.sources.length" :names="person.sources"/>
</li>
</ul>
<ScrollButton/>
</div>
</template>
<script>
import { people } from "~/src/data";
import { head } from "../src/helpers";
export default {
data() {
return {
people,
}
},
head() {
return head({
title: this.$t('people.headerLonger'),
description: this.$t('people.description'),
});
},
}
</script>