deprived-main-website/src/routes/post/Post.svelte

11 lines
257 B
Svelte

<div class="post-container">
<div class="post-header">
<slot name="title" />
<slot name="creation-date" />
<slot name="modification-date" />
<!-- the post content goes in this slot -->
<slot />
</div>
</div>