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