0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-20 22:12:38 -05:00
astro/examples/minimal/src/pages/index.astro

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
191 B
Text
Raw Normal View History

2021-08-15 15:13:58 -04:00
---
2022-01-31 16:28:29 -05:00
---
2022-07-08 22:08:32 +02:00
2021-08-15 15:13:58 -04:00
<html lang="en">
2021-12-22 16:11:05 -05:00
<head>
2021-08-15 15:13:58 -04:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
2022-01-31 16:28:29 -05:00
<title>Astro</title>
2021-12-22 16:11:05 -05:00
</head>
2021-08-15 15:13:58 -04:00
<body>
2022-01-31 16:28:29 -05:00
<h1>Astro</h1>
2021-08-15 15:13:58 -04:00
</body>
</html>