Discover books, shows, and movies at your level. Track your progress by filling your Shelf with what you find, and share with other language learners. *No dusting required.
shlf.space
1package layouts
2
3templ Base(params BaseParams) {
4 <!DOCTYPE html>
5 <html lang="en">
6 <head>
7 <meta charset="UTF-8"/>
8 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
9 <title>shlf.space - { params.Title }</title>
10 <script src="/static/htmx.min.js" defer></script>
11 <script src="/static/lucide.min.js"></script>
12 <script src="/static/alpinejs.min.js" defer></script>
13 <link rel="stylesheet" href="/static/style.css" type="text/css"/>
14 </head>
15 <body class="min-h-screen">
16 <main>
17 { children... }
18 </main>
19 </body>
20 <script type="module" defer>
21 lucide.createIcons();
22 </script>
23 </html>
24}