aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/PostLayout.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/PostLayout.astro')
-rw-r--r--src/layouts/PostLayout.astro24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/layouts/PostLayout.astro b/src/layouts/PostLayout.astro
deleted file mode 100644
index 37bbe37..0000000
--- a/src/layouts/PostLayout.astro
+++ /dev/null
@@ -1,24 +0,0 @@
----
-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>