Build eleventy layout off nuxt layout

This commit is contained in:
Sam Carlton 2021-03-06 15:48:08 -06:00
parent b6292bea18
commit ffb4b08e26
2 changed files with 101 additions and 80 deletions

32
pages/layout-template.vue Normal file
View file

@ -0,0 +1,32 @@
<template>
<section class="container py-24">
<!-- __template -->
</section>
</template>
<script>
export default {
data: function () {
return {}
},
// computed: {
// categoryList () {
// return categoryList
// }
// },
head() {
return {
title: '__template',
// meta: [
// // hid is used as unique identifier. Do not use `vmid` for it as it will not work
// {
// hid: 'description',
// name: 'description',
// content: 'My custom description'
// }
// ]
}
}
}
</script>