-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tt
More file actions
38 lines (37 loc) · 2.05 KB
/
Copy pathindex.tt
File metadata and controls
38 lines (37 loc) · 2.05 KB
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
28
29
30
31
32
33
34
35
36
37
38
[%- USE String %]
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Aspen Discovery SchemaSpy</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="p-5 text-center bg-body-tertiary rounded-3">
<img class="bi mt-4 mb-3" width="128" height="128" src="https://avatars.githubusercontent.com/u/57596229?s=400&u=f6853776a2fd012dc1a6403e5ed29bcec5deaa93&v=4"></image>
<h1 class="text-body-emphasis">Aspen Discovery Database Schemas</h1>
<p class="col-lg-8 mx-auto fs-5 text-muted">
Built with SchemaSpy
</p>
</div>
<div class="d-flex flex-column flex-md-row p-4 gap-4 py-md-5 align-items-center justify-content-center">
<div class="list-group">
[%- FOREACH d IN DIRS.split("\n").reverse %]
[% SET dir = String.new(d) %]
<a href="https://aspen-discovery.github.io/aspen-schemaspy/[% d %]" class="list-group-item list-group-item-action d-flex gap-3 py-3" aria-current="true">
<img src="https://avatars.githubusercontent.com/u/57596229?s=400&u=f6853776a2fd012dc1a6403e5ed29bcec5deaa93&v=4" alt="twbs" width="32" height="32" class="rounded-circle flex-shrink-0">
<div class="d-flex gap-2 w-100 justify-content-between">
<div>
<h6 class="mb-0">Aspen Discovery [% dir.chop | html %]</h6>
</div>
</div>
</a>
[%- END %]
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>