mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
12 lines
375 B
Vue
12 lines
375 B
Vue
<template>
|
|
<section v-if="$config.links.enabled && $config.links.recommended.length">
|
|
<h2 class="mb-3">
|
|
<Icon v="thumbs-up" />
|
|
<T>links.recommended</T>
|
|
</h2>
|
|
<ul class="list-unstyled">
|
|
<LinkEntry v-for="link in $config.links.recommended" :key="link.url" :link="link" />
|
|
</ul>
|
|
</section>
|
|
</template>
|