28 lines
682 B
HTML
28 lines
682 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CRUD Example</title>
|
|
<link rel="stylesheet" href="pico.blue.css">
|
|
<meta name="color-scheme" content="light dark">
|
|
<script type="module" src="datastar.js"></script>
|
|
<style>
|
|
#board {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="container-fluid" data-theme="light">
|
|
|
|
<h1 style="margin-top: 1em; text-align:center">The CRUD Example</h1>
|
|
|
|
<main data-theme="dark">
|
|
<div id="board" data-init="@get('board')"></div>
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html> |