blob: f0314c0533b02c809585490dc55245532f6ca0d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
export const prerender = true;
const title = Astro.locals.title;
---
<html>
<head>
<title>{title}</title>
</head>
<body>
<h1>{title}</h1>
</body>
</html>
|