15 lines
285 B
Text
15 lines
285 B
Text
|
---
|
||
|
import Layout from '../layouts/Layout.astro';
|
||
|
import BasicSection from '../layouts/basicSection.astro';
|
||
|
|
||
|
---
|
||
|
|
||
|
<Layout title="Blog" currentpage="blog">
|
||
|
<BasicSection title="Work in Progress">
|
||
|
Nothing to see here (yet)
|
||
|
</BasicSection>
|
||
|
|
||
|
</Layout>
|
||
|
|
||
|
<style>
|
||
|
</style>
|