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.
|
<template>
|
|
<section v-if="config.links.links.length">
|
|
<h2 class="mb-3">
|
|
<Icon v="bookmark"/>
|
|
<T>links.headerLong</T>
|
|
</h2>
|
|
<ul class="list-unstyled">
|
|
<Link v-for="link in config.links.links" :link="link" :key="link.url"/>
|
|
</ul>
|
|
</section>
|
|
</template>
|