logos changed. SVG should be in better quality

This commit is contained in:
Moriz Wahl 2020-11-10 14:41:09 +01:00
parent ecb0bb3766
commit 128e1f06cc
7 changed files with 82 additions and 92 deletions

View File

@ -1,6 +1,6 @@
export default {
ORGANIZATION: 'https://ocelot-social.herokuapp.com/',
DONATE: 'https://www.busfaktor.org/donations',
FAQ: 'https://ocelot-social.herokuapp.com/',
SUPPORT: 'https://ocelot-social.herokuapp.com/',
ORGANIZATION: 'https://ocelot.social',
DONATE: 'https://ocelot-social.herokuapp.com/donations',
FAQ: 'https://ocelot.social',
SUPPORT: 'https://ocelot.social',
}

View File

@ -98,5 +98,8 @@ export default {
margin-top: $space-large;
margin-bottom: $space-small;
}
.image {
width: 100%;
}
}
</style>

View File

@ -19,7 +19,7 @@
</a>
<span>-</span>
<a
href="https://github.com/Human-Connection/Human-Connection/blob/master/CHANGELOG.md"
href="https://github.com/Ocelot-Social-Community/Ocelot-Social/blob/master/CHANGELOG.md"
target="_blank"
>
{{ version }}

View File

@ -1,6 +1,6 @@
export default {
ORGANIZATION: 'https://www.busfaktor.org',
DONATE: 'https://www.busfaktor.org/donations',
FAQ: 'https://ocelot-social.herokuapp.com',
SUPPORT: 'https://ocelot-social.herokuapp.com',
ORGANIZATION: 'https://ocelot.social',
DONATE: 'https://ocelot-social.herokuapp.com/donations',
FAQ: 'https://ocelot.social',
SUPPORT: 'https://ocelot.social',
}

View File

@ -2,45 +2,14 @@
<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-for="section in sections" :key="section">
<strong>{{ $t(`code-of-conduct.${section}.title`) }}</strong>
<p>{{ $t(`code-of-conduct.${section}.description`) }}</p>
</div>
<br />
<div v-for="section in listSections" :key="section.key">
<strong>{{ $t(`code-of-conduct.${section.key}.title`) }}</strong>
<p>{{ $t(`code-of-conduct.${section.key}.description`) }}</p>
<ul>
<li v-for="i in section.items" :key="i">
{{ $t(`code-of-conduct.${section.key}.list.${i}`) }}
</li>
</ul>
</div>
<p>
{{ $t('code-of-conduct.get-help') }}
<a
class="hc-editor-link-blot"
href="mailto:moderation@human-connection.org"
target="_blank"
>
moderation@human-connection.org
</a>
</p>
<br />
<div v-html="$t('html.codeOfConduct')" />
</ds-container>
</div>
</template>
<script>
import metadata from '~/constants/metadata.js'
export default {
layout: 'basic',
head() {
@ -48,10 +17,5 @@ export default {
title: this.$t('site.code-of-conduct'),
}
},
data() {
return {
metadata,
}
},
}
</script>

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 180 KiB

After

Width:  |  Height:  |  Size: 14 KiB