blob: df758ed27a0a39165e7c6e262ed8717b80d44640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
import BaseHead from '../../components/BaseHead.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../../consts';
import BlogFeed from '../../components/BlogFeed.astro';
import Navbar from '../../components/Navbar.astro';
---
<!doctype html>
<html lang="en">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head>
<body>
<Navbar />
<main>
<BlogFeed headingLevel={1}>
<section>
<p><a href="/blog/subscribe">How to subscribe to this blog</a></p>
</section>
</BlogFeed>
</main>
</body>
</html>
|