elk/layouts/default.vue

23 lines
509 B
Vue
Raw Normal View History

2022-11-13 05:34:43 +00:00
<template>
2022-11-14 14:54:30 +00:00
<div h-full of-hidden>
2022-11-16 02:02:43 +00:00
<main grid="~ lg:cols-[1fr_40rem_1fr]" max-w-70rem mxa h-full>
2022-11-14 14:54:30 +00:00
<div>
<slot name="left">
2022-11-16 21:27:02 +00:00
<AccountMe />
</slot>
2022-11-14 14:54:30 +00:00
</div>
<div h-full of-auto border="l r border">
<slot />
</div>
2022-11-15 17:14:10 +00:00
<div flex="~ col">
2022-11-15 15:48:23 +00:00
<slot name="right">
2022-11-16 21:27:02 +00:00
<NavTitle p5 />
2022-11-15 17:14:10 +00:00
<NavSide border="y border" py8 />
<div flex-auto />
<NavFooter />
2022-11-15 15:48:23 +00:00
</slot>
</div>
2022-11-14 14:54:30 +00:00
</main>
</div>
2022-11-13 05:34:43 +00:00
</template>