-
Notifications
You must be signed in to change notification settings - Fork 163
/
index.tpl
27 lines (25 loc) · 1.03 KB
/
index.tpl
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
27
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Notebooks Index</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.0/css/bootstrap.min.css" integrity="sha384-PDle/QlgIONtM1aqA2Qemk5gPOE7wFq8+Em+G/hmo5Iq0CCmYZLv3fVRDJ4MMwEA" crossorigin="anonymous">
</head>
<body>
<h2 style="margin: 1em; border-bottom: 1px solid #eaecef;
padding-bottom: .3em; font-size: 1.5em">Notebooks Index</h2>
<ul class="list-group list-group-flush" style="width: fit-content; margin: .5em">
{% for group in page_groups %}
<li>
<ul class="list-group list-group-flush" style="width: fit-content; margin: .5em">
{{ group[0]['output_file_path'].split("/")[1] }}
{% for page in group %}
{% set pre = page['output_file_path'].split("/")[2] + " | " if "_" not in page['output_file_path'].split("/")[2] else "" %}
<li class="list-group-item"><a href="{{ page['output_file_path'] }}">{{ pre + page['title'] }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</body>
</html>