talos/docs/website/layouts/default.vue
Timothy Gerla 5348332d26 docs: adjust docs layouts and add tables of contents
- add an auto-generated table of contents with markdown-toc
- docs pages now fill the whole page width; other pages are are 4/5ths wide as before
- clean up and reorganize some styles
- version dropdown moved to the left
- cleaned up the github edit link
- a couple of responsive cleanups
- add page title to HTML title attribute

Signed-off-by: Timothy Gerla <tim@gerla.net>
2020-05-11 10:26:31 -07:00

22 lines
377 B
Vue

<template>
<div class="flex flex-col min-h-screen">
<Header :narrowLogo="true"></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>