24 lines
619 B
HTML
24 lines
619 B
HTML
<!DOCTYPE html >
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hypermedia</title>
|
|
<link rel="stylesheet" href="pico.blue.css">
|
|
<meta name="color-scheme" content="light dark">
|
|
<script type="module" src="datastar.js"></script>
|
|
</head>
|
|
|
|
<body class="container" data-theme="light">
|
|
|
|
<h1 style="margin-top: 1em; text-align:center">Hypermedia as the Engine of Application State</h1>
|
|
|
|
<main class="grid" data-theme="dark">
|
|
<div id="init" data-init="@get('/init.html')"></div>
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|