summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-09-15 14:50:08 +0100
committerNaz <ndpm13@ch-naseem.com>2025-09-15 15:08:15 +0100
commit8b5a71dd3a490718540a7e9d48da2a220256a628 (patch)
treeb1e029fad2a636dabcf053192ded8542e530b3d1 /templates
parentc53617755ea9f98c8c8e36901db90e19e827a483 (diff)
✨feat: dirty commit bringing basic functionality
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..58ab290
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,26 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link rel="icon" type="image/svg" href="/static/favicon.svg" sizes="any" />
+ <title>SBM-RS</title>
+ <link href="/static/style.css" rel="stylesheet" />
+ </head>
+
+ <body>
+ {% for section in bookmarks %}
+ <h1>{{ section.title }}</h1>
+ <div class="cards-container">
+ {% for card in section.cards %}
+ <div class="card">
+ <h2>{{ card.title }}</h2>
+ {% for link in card.links %}
+ <a href="{{ link.url }}">{{ link.title }}</a>
+ {% endfor %}
+ </div>
+ {% endfor %}
+ </div>
+ {% endfor %}
+ </body>
+</html>