blob: 61a1a46890b9659942a8e510b11afb35c69966ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
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} />
</main>
</body>
</html>
|