🔒 Repository is read-only – file editing is disabled.
123456789101112131415161718192021222324252627282930
{% extends "base.html" %}{% block title %}Pobieranie – {{ t('download_title') }} | PaganOS Linux{% endblock %}
{% block content %}
<div class="hero" style="padding-top:2rem">
<h1 style="font-size:2.2rem">⬇ {{ t('download_title') }}</h1>
<p>{{ t('download_subtitle') }}</p>
</div>
<div class="grid2">
{% for d in downloads %}
<div class="card" style="text-align:center"><div class="card-icon">{{ d.icon }}</div>
<h3 style="color:var(--text-bright);margin-bottom:0.5rem">{{ d.title }}</h3>
<p class="text-muted mb-2">{{ d.description }}</p>
{% if d.url %}
<a href="{{ d.url }}" class="btn btn-primary btn-lg"> {{ d.button_label or t('dl_from_repo') }}</a>
{% endif %}
</div>
{% endfor %}
<div class="card" style="text-align:center"><div class="card-icon"></div>
<h3 style="color:var(--text-bright);margin-bottom:0.5rem">{{ t('repo_config') }}</h3>
<p class="text-muted mb-2">{{ t('repo_config_desc') }}</p>
<pre style="text-align:left;font-size:0.78rem">echo 'https://repo.paganlinux.eu/stable' > /etc/pag/repos/stable.conf
pag sync
pag upgrade</pre>
</div>
</div>
<div class="card mt-2"><div class="card-header"><h2> {{ t('gpg_key') }}</h2></div>
<p class="text-muted mb-1">{{ t('gpg_key_desc') }}</p>
<pre>pag key-add https://repo.paganlinux.eu/stable/paganos.asc</pre>
<p class="text-xs text-muted mt-1">{{ t('fingerprint') }}: <code>157F DE15 A424 C89F FA94 01D4 A14C BE52 BE0D 63F5</code></p>
</div>
{% endblock %}