1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00

_layouts/package.html: list sha256 instead of md5

This commit is contained in:
Henrik Hautakoski 2019-12-03 14:35:58 +01:00
parent 977059785e
commit 7f34dd84f3

View file

@ -24,7 +24,7 @@ layout: default
<tr>
<th>Version</th>
<th>Size (Bytes)</th>
<th>md5</th>
<th>sha256</th>
</tr>
{% for version in page.Versions %}
<tr>
@ -34,7 +34,7 @@ layout: default
</a>
</td>
<td>{{ version[1].Size }}</td>
<td>{{ version[1].MD5sum }}</td>
<td>{{ version[1].SHA256 }}</td>
</tr>
{% endfor %}
</table>