2020-09-23 12:16:56 -07:00
|
|
|
<template>
|
2020-12-11 11:37:04 -08:00
|
|
|
<div>
|
2020-09-23 12:16:56 -07:00
|
|
|
<h2>
|
|
|
|
<Icon v="comment-alt-smile"/>
|
2020-09-28 08:51:26 -07:00
|
|
|
<T>contact.header</T>
|
2020-09-23 12:16:56 -07:00
|
|
|
</h2>
|
|
|
|
|
2020-10-10 13:24:11 -07:00
|
|
|
<section>
|
2020-10-10 13:42:16 -07:00
|
|
|
<a v-for="link in [...config.contact.contacts, ...config.links.socials]" :key="link.url"
|
2020-10-10 13:24:11 -07:00
|
|
|
:href="link.url" target="_blank" rel="noopener"
|
|
|
|
class="btn btn-outline-primary border m-1">
|
|
|
|
<Icon :v="link.icon" :set="link.iconSet || 'l'"/>
|
|
|
|
{{link.headline}}
|
|
|
|
</a>
|
2020-09-23 12:16:56 -07:00
|
|
|
</section>
|
2020-09-24 12:38:15 -07:00
|
|
|
|
2020-10-10 13:24:11 -07:00
|
|
|
<section>
|
2020-11-23 08:41:12 -08:00
|
|
|
<h3 class="mb-3">
|
2020-10-10 13:24:11 -07:00
|
|
|
<Icon v="users"/>
|
|
|
|
<T>contact.authors</T>
|
|
|
|
</h3>
|
2021-01-12 11:06:59 -08:00
|
|
|
<Authors/>
|
2020-12-06 09:37:39 -08:00
|
|
|
<small>
|
|
|
|
<T>localise.long</T>
|
|
|
|
<LocaleLink locale="en" link="/blog/creating-new-language-version">
|
|
|
|
<T>localise.longLink</T>
|
|
|
|
</LocaleLink>
|
|
|
|
</small>
|
2020-10-10 13:24:11 -07:00
|
|
|
</section>
|
2020-10-10 13:40:40 -07:00
|
|
|
|
2021-01-27 05:24:25 -08:00
|
|
|
<Support/>
|
2020-09-23 12:16:56 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-09-23 12:29:55 -07:00
|
|
|
import { head } from "../src/helpers";
|
|
|
|
|
2020-09-23 12:16:56 -07:00
|
|
|
export default {
|
|
|
|
head() {
|
2020-09-23 12:29:55 -07:00
|
|
|
return head({
|
2020-09-28 08:51:26 -07:00
|
|
|
title: this.$t('contact.header'),
|
2020-09-23 12:29:55 -07:00
|
|
|
});
|
2020-09-23 12:16:56 -07:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|