talos/docs/website/layouts/default.vue
Andrew Rynhard d9dd55687b docs: show background only on landing page
The background should only be shown on the landing page.

Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
2019-10-19 17:27:07 -07:00

22 lines
358 B
Vue

<template>
<div class="flex flex-col min-h-screen">
<Header></Header>
<main role="main" class="content">
<nuxt />
</main>
<Footer></Footer>
</div>
</template>
<script>
import Header from '~/components/Header.vue'
import Footer from '~/components/Footer.vue'
export default {
components: {
Header,
Footer
}
}
</script>