hanchu/ui/index.html

25 lines
506 B
HTML
Raw Permalink Normal View History

2024-10-22 04:35:21 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Prosody</title>
</head>
<body>
<div id="root"></div>
<script src="elm.js"></script>
<script>
const app = Elm.Main.init({
node: document.getElementById('root')
});
</script>
</body>
</html>
SELECT
l.id, l.text, cards.text, cards.note
FROM cards_lessons cl
JOIN lessons l ON l.id = cl.lesson_id
JOIN cards ON cards.id = lc.card_id
LIMIT 20
OFFSET 0
BY l.id ASC