Ocelot-Social/webapp/pages/code-of-conduct.vue
2021-06-02 20:18:11 +02:00

22 lines
385 B
Vue

<template>
<div>
<ds-space margin="small">
<ds-heading tag="h2">{{ $t('site.code-of-conduct') }}</ds-heading>
</ds-space>
<ds-container>
<div v-html="$t('html.codeOfConduct')" />
</ds-container>
</div>
</template>
<script>
export default {
layout: 'basic',
head() {
return {
title: this.$t('site.code-of-conduct'),
}
},
}
</script>