gradido/frontend/src/components/ContentFooter.vue
2024-08-21 09:10:17 +02:00

72 lines
2.3 KiB
Vue
Executable File

<template>
<footer class="footer m-4 p-4 bg-transparent">
<BRow align-v="center" class="mt-4 justify-content-lg-between">
<BCol>
<div class="copyright text-center text-lg-center text-muted">
{{ $t('footer.copyright.year', { year }) }}
<a :href="`https://gradido.net/${$i18n.locale}`" class="fw-bold ms-1" target="_blank">
{{ $t('footer.copyright.link') }}
</a>
{{ $t('|') }}
<a href="https://github.com/gradido/gradido/releases/latest" target="_blank">
{{ $t('footer.app_version', { version }) }}
</a>
<a
v-if="hash"
:href="'https://github.com/gradido/gradido/commit/' + hash"
target="_blank"
>
{{ $t('footer.short_hash', { shortHash }) }}
</a>
</div>
</BCol>
</BRow>
<BRow align-v="center" class="justify-content-lg-between">
<BCol>
<BNav class="nav-footer justify-content-center">
<BNavItem :href="`https://gradido.net/${$i18n.locale}/impressum/`" target="_blank">
{{ $t('footer.imprint') }}
</BNavItem>
<BNavItem :href="`https://gradido.net/${$i18n.locale}/datenschutz/`" target="_blank">
{{ $t('footer.privacy_policy') }}
</BNavItem>
<BNavItem
:href="
$i18n.locale === 'de'
? 'https://docs.google.com/document/d/1jZp-DiiMPI9ZPNXmjsvOQ1BtnfDFfx8BX7CDmA8KKjY/edit?usp=sharing'
: 'https://docs.google.com/document/d/1kcX1guOi6tDgnFHD9tf7fB_MneKTx-0nHJxzdN8ygNs/edit?usp=sharing'
"
target="_blank"
>
{{ $t('footer.whitepaper') }}
</BNavItem>
<BNavItem :href="`mailto:${supportEmail}`" target="_blank">
{{ $t('navigation.support') }}
</BNavItem>
</BNav>
</BCol>
</BRow>
</footer>
</template>
<script>
import CONFIG from '@/config'
export default {
data() {
return {
year: new Date().getFullYear(),
version: CONFIG.APP_VERSION,
hash: CONFIG.BUILD_COMMIT,
shortHash: CONFIG.BUILD_COMMIT_SHORT,
supportEmail: CONFIG.COMMUNITY_SUPPORT_MAIL,
}
},
}
</script>
<style scoped>
:deep(a.nav-link) {
color: #383838 !important;
}
</style>