Skip to content

Commit 4f1987d

Browse files
committed
First version of toc index
1 parent 4f33457 commit 4f1987d

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Report Viewer</title>
6+
<style>
7+
body {
8+
margin: 0;
9+
display: flex;
10+
flex-direction: column;
11+
height: 100vh;
12+
}
13+
14+
.menu {
15+
padding: 10px 20px;
16+
display: flex;
17+
justify-content: flex-start;
18+
gap: 10px;
19+
font-weight: bold;
20+
font-size: 1.1em;
21+
}
22+
23+
.menu a {
24+
text-decoration: none;
25+
}
26+
27+
.separator {
28+
margin: 0 10px;
29+
}
30+
31+
.content {
32+
flex-grow: 1;
33+
}
34+
35+
iframe {
36+
width: 100%;
37+
height: 100%;
38+
border: none;
39+
}
40+
</style>
41+
</head>
42+
<body>
43+
<div class="menu">
44+
<a href="report_user.html" target="reportFrame">Sort by user</a>
45+
<span class="separator">|</span>
46+
<a href="report_days.html" target="reportFrame">Sort by days open</a>
47+
</div>
48+
<div class="content">
49+
<iframe name="reportFrame" src="report_user.html"></iframe>
50+
</div>
51+
</body>
52+
</html>

0 commit comments

Comments
 (0)