aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/PostLayout.astro
blob: 37bbe370fc8746e1cd30dc76f6912f939308229d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
import BaseLayout from "../layouts/BaseLayout.astro";
---

<style>
	.header {
		text-align: center;
	}
</style>

<BaseLayout>
	<div class="header">
		<h1>Title</h1>
		<p>
			<small>
				Posted
				<time datetime="#">#</time>
				&nbsp;by&nbsp;Valentin Popov&nbsp;‐
				<strong>1 min read</strong>
			</small>
		</p>
	</div>
	<slot />
</BaseLayout>