mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 08:26:40 +00:00
18 lines
402 B
Text
18 lines
402 B
Text
---
|
|
import "../styles/global.css"
|
|
import BaseLayout from "../layouts/BaseLayout.astro"
|
|
|
|
const pageTitle = "Blog posts"
|
|
|
|
---
|
|
<BaseLayout pageTitle={pageTitle}>
|
|
|
|
<p>This is a list of my blog posts.</p>
|
|
|
|
<ul>
|
|
<li><a href="/posts/post-1">My first blog post</a></li>
|
|
<li><a href="/posts/post-2">My second blog post</a></li>
|
|
<li><a href="/posts/post-3">My third blog post</a></li>
|
|
</ul>
|
|
|
|
</BaseLayout>
|