mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-19 05:31:14 +02:00
- 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>
22 lines
377 B
Vue
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>
|