2021-05-03 17:15:48 +02:00

16 lines
413 B
Vue

<template>
<section v-if="Object.keys(config.links.blog).length">
<h2>
<Icon v="pen-nib"/>
<T>links.blog</T>
</h2>
<ul>
<li v-for="(title, slug) in config.links.blog" class="mb-2">
<nuxt-link :to="`/blog/${slug}`">
{{title}}
</nuxt-link>
</li>
</ul>
</section>
</template>