mcfly/src/pages/demo/about.html
2023-10-14 23:52:13 +02:00

22 lines
536 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>top about</title>
<script server:setup>
let greeting = "hello";
const homeLabel = getHomeLabel();
function getHomeLabel() {
return "Home" + "!!! " + new Date().toLocaleDateString();
}
greeting = "nope";
</script>
</head>
<body>
<a href="/">{{homeLabel}}</a>
<h1>{{greeting}}!!! Top Level About</h1>
</body>
</html>