Sets output to static (Astro default) with path-based i18n routing (/en/, /fr/) and no unprefixed default-locale route, per the hub landing page design spec.
13 lines
180 B
Plaintext
13 lines
180 B
Plaintext
---
|
|
const locale = 'en';
|
|
---
|
|
<html lang={locale}>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Ombrora</title>
|
|
</head>
|
|
<body>
|
|
<h1>Ombrora — EN</h1>
|
|
</body>
|
|
</html>
|