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