mirror of
https://github.com/10h30/jpadventure.git
synced 2026-05-12 15:21:19 +09:00
25 lines
690 B
Plaintext
25 lines
690 B
Plaintext
---
|
|
import Navigation from "../components/Navigation.astro";
|
|
import "../styles/global.css";
|
|
---
|
|
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<link rel='icon' type='image/svg+xml' href='/favicon.svg' />
|
|
<meta name='viewport' content='width=device-width' />
|
|
<meta name='generator' content={Astro.generator} />
|
|
<title>About</title>
|
|
</head>
|
|
<body>
|
|
<Navigation />
|
|
<h1>My Astro Learning Blog</h1>
|
|
<p>This is where I will post about my journey learning Astro.</p>
|
|
<ul>
|
|
<li><a href='/posts/post-1/'>Post 1</a></li>
|
|
<li><a href='/posts/post-2/'>Post 2</a></li>
|
|
<li><a href='/posts/post-3/'>Post 3</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|