blob: dd1ee16fc1d4a56dc660c912d3c9ac1275edc22f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
import { SITE_TITLE, SITE_DESCRIPTION } from '../../consts';
import MicrologFeed from '../../components/MicrologFeed.astro';
import Page from '../../layouts/Page.astro';
---
<Page title={SITE_TITLE} description={SITE_DESCRIPTION}>
<MicrologFeed headingLevel={1}>
<!-- <section>
<p><a href="/blog/subscribe">How to subscribe to this blog</a></p>
</section> -->
</MicrologFeed>
</Page>
|