27 lines
1.0 KiB
Vue
27 lines
1.0 KiB
Vue
<template>
|
|
<footer>
|
|
<div class="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
|
|
<p class="text-sm text-gray-400 sm:ml-4 sm:pl-4 sm:py-2 sm:mt-0 mt-4 text-center md:text-left">
|
|
Lauf für Kaya! Selfservice<br>Copyright © 2024<br>proudly powered by
|
|
<a class="underline" target="_blank" rel="noopener,noreferrer"
|
|
href="https://odit.services?ref=lfk">ODIT.Services</a>
|
|
</p>
|
|
<span class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start">
|
|
<a target="_blank" rel="noopener,noreferrer" :href="[[imprint_url]]" class="ml-3 text-gray-400 underline">{{
|
|
$t('imprint') }}</a>
|
|
<a target="_blank" rel="noopener,noreferrer" :href="[[privacy_url]]" class="ml-3 text-gray-400 underline">{{
|
|
$t('privacy_policy') }}</a>
|
|
</span>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
imprint_url: config.url_imprint || "/imprint"
|
|
, privacy_url: config.url_privacy || "/privacy"
|
|
}
|
|
},
|
|
}
|
|
</script> |