mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 02:24:39 -04:00
38 lines
817 B
Vue
38 lines
817 B
Vue
<template>
|
|
<Page>
|
|
<h2>
|
|
{{ clearLinkedText($config.pronouns.mirror.name) }}
|
|
</h2>
|
|
|
|
<p>
|
|
<LinkedText :text="$config.pronouns.mirror.description" />
|
|
</p>
|
|
|
|
<ul>
|
|
<li v-for="example in $config.pronouns.mirror.example">
|
|
<LinkedText :text="example" />
|
|
</li>
|
|
</ul>
|
|
|
|
<AdPlaceholder :phkey="['content-0', 'content-mobile-0']" />
|
|
</Page>
|
|
</template>
|
|
|
|
<script>
|
|
import { head, clearLinkedText } from '../src/helpers.js';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
clearLinkedText,
|
|
};
|
|
},
|
|
head() {
|
|
return head({
|
|
title: this.$config.pronouns.mirror.name,
|
|
description: this.$config.pronouns.mirror.description,
|
|
});
|
|
},
|
|
};
|
|
</script>
|