mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-03 10:04:44 -04:00
36 lines
764 B
Vue
36 lines
764 B
Vue
<template>
|
|
<Page>
|
|
<h2>
|
|
{{ clearLinkedText($config.pronouns.null.description) }}
|
|
</h2>
|
|
|
|
<p>
|
|
<LinkedText :text="$config.pronouns.null.history" />
|
|
</p>
|
|
|
|
<AdPlaceholder :phkey="['content-0', 'content-mobile-0']" />
|
|
|
|
<Avoiding />
|
|
|
|
<AdPlaceholder :phkey="['content-1', 'content-mobile-1']" />
|
|
</Page>
|
|
</template>
|
|
|
|
<script>
|
|
import { head, clearLinkedText } from '../src/helpers.ts';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
clearLinkedText,
|
|
};
|
|
},
|
|
head() {
|
|
return head({
|
|
title: this.$config.pronouns.null.description,
|
|
description: this.$config.pronouns.null.history,
|
|
}, this.$translator);
|
|
},
|
|
};
|
|
</script>
|