aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/fixtures/middleware/src/pages/index.astro
blob: d97f7069897a9b3016ad1d71da1743f95f111417 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
const title = Astro.locals.title;
---

<html>
<head>
    <title>{title}</title>
</head>
<body>
<h1>{title}</h1>
</body>
</html>