gt-astro-docs/src/layouts/Layout.astro

21 lines
457 B
Plaintext
Raw Normal View History

2024-12-23 13:28:11 +01:00
2024-12-23 13:01:15 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Astro Basics</title>
</head>
<body>
<slot />
</body>
</html>
2024-12-23 13:28:11 +01:00
<style is:global>
/* Unscoped, delivered as-is to the browser.
Applies to all <h1> tags on your site. */
h1 { color: red; }
2024-12-23 13:01:15 +01:00
</style>