Ocelot-Social/webapp/pages/code-of-conduct.vue
roschaefer 77b031083e Make four static pages
* imprint
* data privacy
* terms of service
* code of conduct
2020-06-15 14:08:45 +02:00

31 lines
531 B
Vue

<template>
<div>
<ds-space>
<ds-heading tag="h2">{{ $t('site.code-of-conduct') }}</ds-heading>
<p>{{ $t('code-of-conduct.subheader', metadata) }}</p>
</ds-space>
<ds-container>
<div v-html="$t('html.codeOfConduct')" />
</ds-container>
</div>
</template>
<script>
import metadata from '~/constants/metadata.js'
export default {
layout: 'basic',
head() {
return {
title: this.$t('site.code-of-conduct'),
}
},
data() {
return {
metadata,
}
},
}
</script>