blob: 58ab29044b3238a5d0c69785c6ba42de8ab2dca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>
|