summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDaniel Micay <daniel.micay@grapheneos.org>2024-10-12 09:42:41 -0400
committerDaniel Micay <daniel.micay@grapheneos.org>2024-10-12 09:42:41 -0400
commitb61454e13c2c14f17564c5951a90c30f613ddb13 (patch)
treea6ea55eb192ad1d628a50c865ae05378134dcdb2 /templates
parentc0f61009219020c701ab7e11f2f56cd18ae4fcde (diff)
overhaul layout of release list
Diffstat (limited to 'templates')
-rw-r--r--templates/device.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/templates/device.html b/templates/device.html
new file mode 100644
index 00000000..16d814dc
--- /dev/null
+++ b/templates/device.html
@@ -0,0 +1,43 @@
+<section id="{{codename}}">
+ <h3><a href="#{{codename}}">{{name}}</a></h3>
+ <table>
+ <tr>
+ <th>Channel</th>
+ <th>Version</th>
+ <th>Downloads</th>
+ </tr>
+ <tr id="{{codename}}-stable">
+ <td>Stable</td>
+ <td><a href="#[[{{codename}}-stable-BUILD_NUMBER]]">[[{{codename}}-stable-BUILD_NUMBER]]</a></td>
+ <td>
+ <ul>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-install-[[{{codename}}-stable-BUILD_NUMBER]].zip">Install zip</a></li>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-install-[[{{codename}}-stable-BUILD_NUMBER]].zip.sig">Install zip signature</a></li>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-ota_update-[[{{codename}}-stable-BUILD_NUMBER]].zip">Signed update package</a></li>
+ </ul>
+ </td>
+ </tr>
+ <tr id="{{codename}}-beta">
+ <td>Beta</td>
+ <td><a href="#[[{{codename}}-beta-BUILD_NUMBER]]">[[{{codename}}-beta-BUILD_NUMBER]]</a></td>
+ <td>
+ <ul>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-install-[[{{codename}}-beta-BUILD_NUMBER]].zip">Install zip</a></li>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-install-[[{{codename}}-beta-BUILD_NUMBER]].zip.sig">Install zip signature</a></li>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-ota_update-[[{{codename}}-beta-BUILD_NUMBER]].zip">Signed update package</a></li>
+ </ul>
+ </td>
+ </tr>
+ <tr id="{{codename}}-alpha">
+ <td>Alpha</td>
+ <td><a href="#[[{{codename}}-alpha-BUILD_NUMBER]]">[[{{codename}}-alpha-BUILD_NUMBER]]</a></td>
+ <td>
+ <ul>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-install-[[{{codename}}-alpha-BUILD_NUMBER]].zip">Install zip</a></li>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-install-[[{{codename}}-alpha-BUILD_NUMBER]].zip.sig">Install zip signature</a></li>
+ <li><a href="https://releases.grapheneos.org/{{codename}}-ota_update-[[{{codename}}-alpha-BUILD_NUMBER]].zip">Signed update package</a></li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+</section>