examples/basic/layouts/marketing.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title><%= @page.title || "Astral Landing" %></title>
<script type="module" src="<%= Astral.asset_path(@site, "app.ts") %>"></script>
</head>
<body class="marketing">
<main class="hero">
<%= @content %>
<p><a class="button" href="/">Back to the example home</a></p>
</main>
</body>
</html>