]> git.ipfire.org Git - ipfire.org.git/commitdiff
downloads: Improve copy on mirror page
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 28 Nov 2021 14:52:41 +0000 (14:52 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 28 Nov 2021 14:55:02 +0000 (14:55 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/templates/download/mirrors.html

index b01725d0a73708a10409c8f6194e984da81adb8e..7d1f28585e6001ea2c7902bece7b8479595d3c7d 100644 (file)
@@ -4,20 +4,21 @@
 
 {% block container %}
        {% set total = sum((len(m) for c, m in mirrors.items())) %}
+       {% set countries = len(mirrors) %}
 
        <div class="header">
                <div class="container">
                        <h1>{{ _("Mirrors") }}</h1>
+
+                       <p class="text-muted">
+                               {{ _("IPFire downloads are being served from %(total)s mirror servers "
+                                       "sponsored by various organizations in %(countries)s countries "
+                                       "helping us making it available for everyone") % { "total" : total, "countries" : countries } }}
+                       </p>
                </div>
        </div>
 
        <div class="container">
-               <section>
-                       <h4 class="text-center">
-                               {{ _("We are currently running %s mirror servers worldwide") % total }}
-                       </h4>
-               </section>
-
                <section>
                        {% for country in sorted(mirrors, key=lambda c: c.name) %}
                                <div class="my-4 d-flex justify-content-between">