Files
kolibrios.org/templates/download.html
T
2025-08-22 19:33:00 +03:00

99 lines
3.4 KiB
HTML

<!doctype html>
<html lang="{{ lang }}" onmouseup="dropdown_hide()">
{% include 'tmpl/_header.htm' %}
<body onkeydown="checkkey(event)">
{% include 'tmpl/_lang-dropdown.htm' %}
{% include 'tmpl/_menu.htm' %}
<div id="article">
<h1>{{ _('downloads:header') }}</h1>
<table>
{% for ext, alt in (
('img', 'floppy'),
('iso', 'cd'),
('distr', 'universal'),
('raw', 'uefi')
) %}
<tr class="tr-margin-bot">
<td class="td-image" width="40">
<img src="{{ url_for('static', filename='img/icons/i_%s.png' % alt) }}" alt="{{ alt }}">
</td>
<td class="td-description">
{{ _('downloads:%s-descr' % ext) }}
{% if ext == 'raw' %}
<span class="beta">BETA</span>
{% endif %}
</td>
<td class="td-date">
$autobuild_date_ru
</td>
<td class="td-languages">
{% for l, lang in (
('en_US', 'English'),
('ru_RU', 'Русский'),
('es_ES', 'Español')
) %}
<a href="//builds.kolibrios.org/{{ l }}/latest-{{ ext }}.7z"
title="ver. $autobuild_cmtid_{{ l }}, $autobuild_size_{{ l }}_{{ ext }}">{{ lang }}</a>
{% endfor %}
</td>
</tr>
{% endfor %}
<tr>
<td colspan="4">
<hr />
</td>
</tr>
<tr class="tr-margin-top">
<td class="td-description" colspan="2">
<div role="button" class="help-button"
onclick="alert('{{ _('downloads:download_help') }}');">
{{ _('downloads:download_choice') }}
</div>
<td class="td-date">
<a href="//archive.kolibrios.org/ru/">{{ _('downloads:prev_rev') }}</a>
</td>
<td class="td-languages">
<a href="//builds.kolibrios.org/">{{ _('downloads:all_rev') }}</a>
</td>
</tr>
</table>
<p>
{{ _(
'downloads:download_description',
kolibrios="<b>{0}</b>"
.format(_('title:index')),
zip="<a href='http://www.7-zip.org' target='_blank'>7zip</a>",
gpl="<a href='http://www.gnu.org/licenses/gpl-2.0.html' target='_blank'>GPLv2</a>",
git="<a href='https://git.kolibrios.org'>{0}</a>"
.format(_('downloads:git-server'))
) | safe }}
</p>
<h1>{{ _('screenshots:header') }}</h1>
<div id="screen" onclick="next()">
<div id="show">
{% for i in range(1, 7) %}
<img
id="slide{{ i }}"
src="{{ url_for('static', filename='img/screenshots/%d.png' % i ) }}"
{% if i == 1 %}class="visible"{% endif %}
alt="{{ _('screenshots:%d' % i) }}"
>
{% endfor %}
</div>
</div>
<div id="carousel"></div>
<div id="dots"></div>
</div>
{% include 'tmpl/_footer.htm' %}
</body>
</html>