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.
2021-03-05 08:32:06 -08:00
|
|
|
<template>
|
2021-05-03 07:15:48 -07:00
|
|
|
<section v-if="Object.keys(config.links.blog).length">
|
2021-03-05 08:32:06 -08:00
|
|
|
<h2>
|
|
|
|
<Icon v="pen-nib"/>
|
2021-05-03 07:15:48 -07:00
|
|
|
<T>links.blog</T>
|
2021-03-05 08:32:06 -08:00
|
|
|
</h2>
|
|
|
|
<ul>
|
2021-05-03 07:15:48 -07:00
|
|
|
<li v-for="(title, slug) in config.links.blog" class="mb-2">
|
2021-03-05 08:32:06 -08:00
|
|
|
<nuxt-link :to="`/blog/${slug}`">
|
|
|
|
{{title}}
|
|
|
|
</nuxt-link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</template>
|