2018-10-18 05:13:18 +00:00
|
|
|
<template lang="pug">
|
|
|
|
#blog
|
|
|
|
nuxt-link(to='/blog')
|
|
|
|
h1.title.has-text-centered ~ a mess of words ~
|
|
|
|
#top
|
|
|
|
nuxt-child
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
head() {
|
|
|
|
return { title: 'blog' }
|
|
|
|
},
|
2018-10-18 06:19:46 +00:00
|
|
|
layout: 'compact',
|
2018-10-18 05:13:18 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="sass" scoped>
|
|
|
|
.title
|
|
|
|
margin-bottom: 5rem
|
|
|
|
</style>
|