Files
sori.studio/layouts/post.vue
2026-04-29 14:54:44 +09:00

13 lines
301 B
Vue

<template>
<div class="site-shell post-layout">
<SiteHeader />
<div class="site-content-grid post-layout__grid">
<LeftSidebar />
<main class="post-main w-full bg-paper px-5 py-8 lg:w-[720px]">
<slot />
</main>
<RightSidebar />
</div>
</div>
</template>