Release 1.0.0

This commit is contained in:
2026-02-25 10:24:12 +01:00
parent 44fb66adfc
commit c033456bf8
35 changed files with 4891 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ecosio downloads</title>
<style>
body {
background-color: #eee;
font-family: Monaco, "Lucida Console", "Courier New", monospace;
}
img {
max-width: 33ch;
}
.header {
color: white;
}
.cell {
padding: 5px;
text-align: center;
background-color: #ccc;
}
.content {
background-color: #fefefe;
}
</style>
</head>
<body>
<table>
<tr><td></td><td><h3>Available for download</h3></td><td><h3>System Errors</h3></td><td><h3>Data Issues</h3></td></tr>
{% for date in downloads.keys() %}
<tr>
<td class="cell left">&nbsp;{{ date }}&nbsp;</td>
<td class="cell content">{{ downloads[date][0] }}</td>
<td class="cell content">{{ downloads[date][1] }}</td>
<td class="cell content">{{ downloads[date][2] }}</td>
</tr>
{% endfor %}
</table>
<br/><br/><br/>
<a href="{{ ('downloadaszip') }}">DOWNLOAD ALL AVAILABLE MESSAGES FOR ECOSIO</a>
</body>
</html>