-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (74 loc) · 2.45 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
layout: index
---
<!--
-- Blog
-->
<div class="jumbotron">
<div class="container">
<h1 class="display-6">{{ site.title }}</h1>
<p class="lead">{{ site.description }}</p>
<noscript>
<div class="alert alert-danger mt-5" role="alert">
<strong>Error</strong> This site requires JavaScript to work
</div>
</noscript>
</div>
</div>
<div class="container">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Device</th>
<th scope="col">Model</th>
<th scope="col">Version</th>
<th scope="col">Date</th>
<th scope="col">Type</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody id="downloads">
<tr id="downloads-loading">
<td colspan="6">Loading...</th>
</tr>
</tbody>
</table>
</div>
<div class="modal fade" id="dlmodal">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Downloading <span class="dlmodal-build-type"></span> for <span class="dlmodal-device-display-name"></span> (<span class="dlmodal-device-model"></span>)...</h5>
</div>
<div class="modal-body">
<div class="row mb-0">
<div class="col-sm-2 col-12"><strong>Device</strong></div>
<div class="col-sm-10 col-12"><span class="dlmodal-device-display-name"></span></div>
</div>
<div class="row mb-0">
<div class="col-sm-2 col-12"><strong>Model</strong></div>
<div class="col-sm-10 col-12"><span class="dlmodal-device-model"></span></div>
</div>
<div class="row mb-0">
<div class="col-sm-2 col-12"><strong>ROM</strong></div>
<div class="col-sm-10 col-12"><span class="dlmodal-rom-name"></span> <span class="dlmodal-rom-version"></span></div>
</div>
<div class="row mb-0">
<div class="col-sm-2 col-12"><strong>Built on</strong></div>
<div class="col-sm-10 col-12"><span class="dlmodal-rom-date"></span></div>
</div>
<div class="progress mt-3 mb-0">
<div class="progress-bar bg-info progress-bar-striped progress-bar-animated" role="progressbar" id="dlmodal-progress"></div>
</div>
<div class="row mt-1">
<div class="col-12 text-right">
<span id="dlmodal-progress-text"></span>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger btn-block" id="dlmodal-abort">Abort</button>
</div>
</div>
</div>
</div>