This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-24 12:38:15 -07:00
|
|
|
<template>
|
2021-03-05 07:22:28 -08:00
|
|
|
<section v-if="config.links.mediaGuests.length || config.links.mediaMentions.length">
|
2020-09-24 12:38:15 -07:00
|
|
|
<h2 class="h3">
|
|
|
|
<Icon v="tv"/>
|
2020-09-28 08:51:26 -07:00
|
|
|
<T>links.media</T>
|
2020-09-24 12:38:15 -07:00
|
|
|
</h2>
|
2021-03-05 07:22:28 -08:00
|
|
|
<h3 v-if="config.links.mediaGuests.length && config.links.mediaMentions.length" class="h4 mt-3">
|
|
|
|
<Icon v="microphone-alt"/>
|
|
|
|
<T>links.mediaGuests</T>
|
|
|
|
</h3>
|
|
|
|
<ul class="list-unstyled" v-if="config.links.mediaGuests.length">
|
|
|
|
<Link v-for="link in config.links.mediaGuests" :link="link" :key="link.url"/>
|
|
|
|
</ul>
|
|
|
|
<h3 v-if="config.links.mediaGuests.length && config.links.mediaMentions.length" class="h4 mt-3">
|
|
|
|
<Icon v="quote-right"/>
|
|
|
|
<T>links.mediaMentions</T>
|
|
|
|
</h3>
|
|
|
|
<ul class="list-unstyled" v-if="config.links.mediaMentions.length">
|
|
|
|
<Link v-for="link in config.links.mediaMentions" :link="link" :key="link.url"/>
|
2020-09-24 12:38:15 -07:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</template>
|