17 lines
226 B
Text
17 lines
226 B
Text
![]() |
---
|
||
|
const name = "world"
|
||
|
---
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<!-- This... is an Astro comment. -->
|
||
|
<title>Hello, {name}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<main>
|
||
|
<h1>Hello, {name}</h1>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|