2020-07-22 13:19:23 -07:00
|
|
|
<template>
|
2020-10-28 08:22:29 -07:00
|
|
|
<footer v-if="config.header">
|
2020-07-22 13:19:23 -07:00
|
|
|
<Separator icon="user-friends"/>
|
2020-09-18 07:55:15 -07:00
|
|
|
<div class="d-flex flex-column flex-md-row justify-content-around mt-4 mb-5">
|
|
|
|
<div class="small text-center d-flex flex-column justify-content-center">
|
2020-09-14 10:23:17 -07:00
|
|
|
<p class="mb-2">
|
2020-09-28 08:51:26 -07:00
|
|
|
<T>contact.authors</T>:
|
2020-09-14 10:23:17 -07:00
|
|
|
</p>
|
2020-08-04 14:39:57 -07:00
|
|
|
|
2020-09-23 12:16:56 -07:00
|
|
|
<Authors/>
|
2020-08-04 14:39:57 -07:00
|
|
|
|
2020-09-25 09:23:02 -07:00
|
|
|
<p>
|
2020-09-28 08:51:26 -07:00
|
|
|
<T>footer.source</T>
|
2020-09-14 10:23:17 -07:00
|
|
|
</p>
|
2020-07-26 08:35:07 -07:00
|
|
|
</div>
|
2020-09-24 14:08:13 -07:00
|
|
|
<div class="text-center d-flex flex-column justify-content-center">
|
2020-09-14 10:23:17 -07:00
|
|
|
<p class="small mb-0">
|
|
|
|
<Icon v="users"/>
|
2020-09-28 08:51:26 -07:00
|
|
|
<T>footer.links</T>:
|
2020-09-14 10:23:17 -07:00
|
|
|
</p>
|
|
|
|
<div class="mb-3">
|
2020-10-10 13:24:11 -07:00
|
|
|
<SquareButton
|
2020-10-10 13:42:16 -07:00
|
|
|
v-for="link in [...config.contact.contacts, ...config.links.socials]" :key="link.url"
|
2020-10-31 08:08:48 -07:00
|
|
|
:link="link.url"
|
|
|
|
:aria-label="link.icon"
|
|
|
|
>
|
2020-10-10 13:24:11 -07:00
|
|
|
<Icon :v="link.icon" :set="link.iconSet || 'l'"/>
|
2020-09-14 10:23:17 -07:00
|
|
|
</SquareButton>
|
2020-11-12 12:21:53 -08:00
|
|
|
<br v-if="config.links.socials.length > 2"/>
|
2020-10-31 08:08:48 -07:00
|
|
|
<SquareButton link="https://avris.it" aria-label="avris.it">
|
|
|
|
<img src="~assets/avris.svg" alt="Avris"/>
|
2020-10-05 15:15:05 -07:00
|
|
|
</SquareButton>
|
2020-10-31 08:08:48 -07:00
|
|
|
<SquareButton link="https://paypal.me/AndreAvris" aria-label="PayPal">
|
2020-09-14 10:23:17 -07:00
|
|
|
<Icon v="paypal" set="b"/>
|
|
|
|
</SquareButton>
|
2020-10-31 08:08:48 -07:00
|
|
|
<SquareButton link="https://gitlab.com/Avris/Zaimki" aria-label="GitLab">
|
2020-09-14 10:23:17 -07:00
|
|
|
<Icon v="gitlab" set="b"/>
|
|
|
|
</SquareButton>
|
|
|
|
</div>
|
2020-11-10 14:41:56 -08:00
|
|
|
<ul v-if="config.user.enabled" class="list-inline small">
|
|
|
|
<li class="list-inline-item">
|
|
|
|
<nuxt-link :to="`/${config.user.termsRoute}`">
|
|
|
|
<Icon v="gavel"/>
|
|
|
|
<T>terms.header</T>
|
|
|
|
</nuxt-link>
|
|
|
|
</li>
|
|
|
|
<li class="list-inline-item">
|
|
|
|
<nuxt-link to="/api">
|
|
|
|
<Icon v="laptop-code"/>
|
|
|
|
<T>api.header</T>
|
|
|
|
</nuxt-link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2020-09-14 10:23:17 -07:00
|
|
|
<Share/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-07-22 13:19:23 -07:00
|
|
|
</footer>
|
|
|
|
</template>
|