mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 12:07:22 -04:00
30 lines
852 B
Vue
30 lines
852 B
Vue
<template>
|
|
<AdPlaceholder phkey="content-footer" />
|
|
<section v-bind="$attrs">
|
|
<ShopifyEmbed />
|
|
</section>
|
|
|
|
<!--
|
|
<section>
|
|
<h3>
|
|
<Icon v="people-carry"/>
|
|
<T>support.header</T>
|
|
</h3>
|
|
<p><T>support.description</T></p>
|
|
<p>
|
|
<component v-for="link in links" :key="link.url"
|
|
:is="link.tooltip ? 'Tooltip' : 'span'" :text="link.tooltip">
|
|
<a :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>
|
|
</component>
|
|
</p>
|
|
<p class="small">
|
|
<Financial/>
|
|
</p>
|
|
</section>
|
|
-->
|
|
</template>
|