Files
sqlight/index.html
2025-05-17 12:22:34 +08:00

50 lines
3.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>SQLite Playground</title>
<meta name="description" content="A SQLite Playground that runs completely locally" />
<script src="https://unpkg.com/split-grid/dist/split-grid.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@floating-ui/core@1.7.0"></script>
<script src="https://cdn.jsdelivr.net/npm/@floating-ui/dom@1.7.0"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.40.1/ace.min.js" integrity="sha512-yZCW/4uyGQEinu8VJLwUj/w4hXUGuP027EvOt+wLzI0T3v+2o/UhK6L7dwt2QXYOdcnYAS1yheQk6AzNVdlA5A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.40.1/mode-sql.min.js" integrity="sha512-dABa+YCy/MOELLU5BKnJeR/pcORL8icJNR1TBZWrRmlFoWXZEFketX6Qx/DVBkewMZC8mUOGJMJ70fwxcpIDCw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.40.1/theme-gruvbox.min.js" integrity="sha512-csAdQ+MAmg252+rlVpEgxnAzlzPBBEDzi8QSoaMyV1lJqMZuzASQUDyTpT1W2gGqrRLioKPaX0ylDwkMXxzDsw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.40.1/theme-github.min.js" integrity="sha512-6PQOyKN8ulKmC/NQlWnhk2Upjza1Lj9pbYD/6+gNuNG+U28jW/x9iJQJuiQkfQAFggY1sToW9va3vY4xfpsJaA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.41.0/theme-github_dark.min.js" integrity="sha512-9KPSgJ+mukvk+UY25jG7bM1hOR43Sw9jmJxc5q5aa7RAMoQeyY12PNfwwUAPhe9AtOpUA1jKsDRgxeDCXe/uMg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&amp;display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link data-trunk href="./assets/module.postcss/index.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/playground.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/header.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/button_set.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/icon.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/editor.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/output.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/pop_button.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/menu_group.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/menu_item.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/selectable_menu_item.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/loader.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/config_element.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/output/execute.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/output/header.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/output/section.module.css" rel="css">
<link data-trunk href="./assets/module.postcss/output/share.module.css" rel="css">
<link data-trunk rel="rust" href="Cargo.toml" data-bin="app" data-type="main" />
<link data-trunk rel="rust" href="Cargo.toml" data-bin="worker" data-type="worker" data-loader-shim data-bindgen-target="web" />
</head>
<body></body>
</html>