ci: remove superfluous before_script
[web/firmware-selector-openwrt-org.git] / www / index.html
1 <!DOCTYPE html>
2
3 <html lang="en">
4 <head>
5 <meta charset="utf-8" />
6 <title>OpenWrt Firmware Selector</title>
7 <link rel="stylesheet" href="index.css" />
8 <script src="i18n.js"></script>
9 <script src="config.js"></script>
10 <script src="index.js"></script>
11 </head>
12 <body onload="init()">
13 <header>
14 <div>
15 <img src="logo.svg" width="180" alt="Logo" />
16 <div style="flex-grow: 1"></div>
17
18 <select id="language-selection" size="1">
19 <option value="ca">Català</option>
20 <option value="en">English</option>
21 <option value="es">Español</option>
22 <option value="de">Deutsch</option>
23 <option value="fr">Français</option>
24 <option value="it">Italiano</option>
25 <option value="no">Norsk</option>
26 <option value="pl">Polski</option>
27 <option value="tr">Türkçe</option>
28 </select>
29 </div>
30 </header>
31
32 <div class="container">
33 <div>
34 <h2 class="tr-load">Download OpenWrt Firmware for your Device!</h2>
35 <p class="tr-message">
36 Enter the name/model of your device, then select the Stable version
37 (default) or the nightly "snapshot" image.
38 </p>
39 <br />
40
41 <div id="models-autocomplete" class="autocomplete">
42 <input
43 id="models"
44 type="text"
45 placeholder="Model"
46 spellcheck="false"
47 autocapitalize="off"
48 />
49 </div>
50 <select id="versions" size="1"></select>
51
52 <br />
53 <br />
54
55 <div>
56 <img id="buildspinner" src="spinner.gif" alt="Logo" />
57 <div id="buildstatus"></div>
58 </div>
59
60 <div id="images">
61 <div id="custom">
62 <h3 class="tr-customize">Customize</h3>
63 <div class="autocomplete">
64 <textarea
65 id="packages"
66 spellcheck="false"
67 autocapitalize="off"
68 ></textarea>
69 </div>
70 <a href="javascript:build_asu_request()" class="custom-link">
71 <span>&#9881;</span
72 ><span class="tr-request-build">Request Build</span>
73 </a>
74 </div>
75
76 <div>
77 <h3 id="build-title" class="tr-version-build">Release Build</h3>
78 <div>
79 <span class="column tr-model">Model:</span>
80 <span id="image-model"></span>
81 </div>
82 <div>
83 <span class="column tr-target">Target:</span>
84 <span id="image-target"></span>
85 </div>
86 <div>
87 <span class="column tr-version">Version:</span>
88 <span id="image-version"></span> (<span id="image-code"></span>)
89 </div>
90 <div>
91 <span class="column tr-date">Date:</span>
92 <span id="image-date"></span>
93 </div>
94 </div>
95
96 <div id="download-links">
97 <h3 id="downloads-title" class="tr-downloads">Downloads</h3>
98 </div>
99
100 <div>
101 <span id="factory-help" class="download-help tr-factory-help"
102 >Factory images are for flashing routers with OpenWrt for the
103 first time using the web interface of the original firmware.</span
104 >
105 <span id="sysupgrade-help" class="download-help tr-sysupgrade-help"
106 >Sysupgrade images are for flashing routers that already run
107 OpenWrt. The image can be applied using the web interface or the
108 console.</span
109 >
110 <span id="kernel-help" class="download-help tr-kernel-help"
111 >Linux kernel as a separate image.</span
112 >
113 <span id="rootfs-help" class="download-help tr-rootfs-help"
114 >Root file system as a separate image.</span
115 >
116 <span id="sdcard-help" class="download-help tr-sdcard-help"
117 >Image that is meant to be flashed on an SD-Card.</span
118 >
119 <span id="tftp-help" class="download-help tr-tftp-help"
120 >Image that can be applied using the TFTP meachnism of the
121 bootloader</span
122 >
123 <span id="other-help" class="download-help tr-other-help"
124 >Image of unknown purpose.</span
125 >
126 </div>
127 </div>
128
129 <div id="footer">
130 <span
131 ><a
132 href="https://gitlab.com/openwrt/web/firmware-selector-openwrt-org"
133 >YAFS</a
134 >
135 %GIT_VERSION%</span
136 >
137 </div>
138 </div>
139 </div>
140 </body>
141 </html>