-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 996 Bytes
/
index.html
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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>🚀 Interop 2024 Reactions</title>
<link rel="stylesheet" href="/index.css">
<script src="/index.js" type="module"></script>
<header>
<h1>Interop 2024 Reactions</h1>
<p>This is a list of <a href="https://github.com/orgs/web-platform-tests/projects/3/views/1">Interop 2024 proposals</a> sorted by number of reactions.</p>
</header>
<main>
<div id="reactions">
<table>
<thead>
<tr>
<th title="Total number of reactions"><button class="sort" data-sort="total">Reactions</button></th>
<th><input class="search" placeholder="Filter issues by typing here"></th>
</tr>
</thead>
<tbody class="list">
{{#each issues}}
<tr>
<td class="total">{{total_count}}</td>
<td class="title"><a href="{{url}}">{{title}}</a></td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</main>
<footer>
Last updated {{updated}}
</footer>