mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
23 lines
1018 B
Vue
23 lines
1018 B
Vue
<template>
|
|
<section v-if="$config.links.enabled && ($config.links.mediaGuests.length || $config.links.mediaMentions.length)">
|
|
<h2>
|
|
<Icon v="tv" />
|
|
<T>links.media</T>
|
|
</h2>
|
|
<h3 v-if="$config.links.mediaGuests.length && $config.links.mediaMentions.length" class="mt-4 mb-2">
|
|
<Icon v="microphone-alt" />
|
|
<T>links.mediaGuests</T>
|
|
</h3>
|
|
<ul v-if="$config.links.mediaGuests.length" class="list-unstyled">
|
|
<LinkEntry v-for="link in $config.links.mediaGuests" :key="link.url" :link="link" />
|
|
</ul>
|
|
<h3 v-if="$config.links.mediaGuests.length && $config.links.mediaMentions.length" class="mt-4 mb-2">
|
|
<Icon v="quote-right" />
|
|
<T>links.mediaMentions</T>
|
|
</h3>
|
|
<ul v-if="$config.links.mediaMentions.length" class="list-unstyled">
|
|
<LinkEntry v-for="link in $config.links.mediaMentions" :key="link.url" :link="link" />
|
|
</ul>
|
|
</section>
|
|
</template>
|