forked from ryansolid/isomorphic-ui-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.marko
33 lines (33 loc) · 1.08 KB
/
index.marko
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Isomorphic UI Benchmarks</title>
</head>
<body>
<ul>
<for|benchmark| of=data.benchmarks>
<li>
<h1>${benchmark.name}</h1>
<p>
<a href=`${process.env.URL_PREFIX || ""}/benchmark/${
benchmark.name
}/`>Run Client-side Benchmark</a>
</p>
<p>
View pages:
<ul>
<for|bench| of=benchmark.benches>
<li>
<a href=`${process.env.URL_PREFIX || ""}/${
benchmark.name
}/${bench.name}/`>${bench.name}</a>
</li>
</for>
</ul>
</p>
</li>
</for>
</ul>
</body>
</html>