{% extends "base.html" %}{% block title %}Pobieranie – {{ t('download_title') }} | PaganOS Linux{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ t('download_title') }}

{{ t('download_subtitle') }}

{% for d in downloads %}
{{ d.icon }}

{{ d.title }}

{{ d.description }}

{% if d.url %} {{ d.button_label or t('dl_from_repo') }} {% endif %}
{% endfor %}

{{ t('repo_config') }}

{{ t('repo_config_desc') }}

echo 'https://repo.paganlinux.eu/stable' > /etc/pag/repos/stable.conf
pag sync
pag upgrade
{% if isos %}

{{ t('iso_available_images') }}

{{ t('iso_verify') }}

{% for i in isos %}
PaganOS {{ i.version }}
{% if i.date %}{{ i.date }}{% endif %} {{ i.size_mb }} MB {{ i.sha256_short }}…
{{ t('download_iso') }}
{% if i.description %}

{{ i.description }}

{% endif %} {% if i.changes %}
{{ t('iso_changelog') }}
    {% for ln in i.changes.split('\n') %}{% if ln.strip() %}
  • {{ ln }}
  • {% endif %}{% endfor %}
{% endif %}
{{ t('iso_checksum') }} {{ i.sha256 }} {{ t('iso_dl_sha') }}
{% endfor %}
{% endif %}

{{ t('gpg_key') }}

{{ t('gpg_key_desc') }}

pag key-add https://repo.paganlinux.eu/stable/paganos.asc

{{ t('fingerprint') }}: 157F DE15 A424 C89F FA94 01D4 A14C BE52 BE0D 63F5

{% endblock %}