download/mirrors: rewrite http type into forced https usage
[grml.org.git] / download / mirrors / index.html.tt2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>grml.org - Download - Mirror List</title>
5 <meta name="Title" content="grml.org - Download" />
6 <meta name="Author" content="the grml team [www.grml.org/team/]" />
7 <meta name="Keywords" content="grml.org, grml" />
8 <meta name="Description" content="Download of grml.org" />
9 <meta name="Abstract" content="grml, just another linux-distribution" />
10 <meta name="Robots" content="index,follow" />
11 <meta name="Language" content="english" />
12 <meta name="identifier-url" content="https://grml.org/" />
13 <meta name="MSSmartTagsPreventParsing" content="true" />
14 <meta http-equiv="imagetoolbar" content="no" />
15 <link rel="home" href="/" title="grml.org" />
16 <link rel="help" href="/features/" title="About" />
17 <link rel="author" href="/team/" title="Team" />
18 <link rel="icon" href="/favicon.png" type="image/png" />
19 <link rel="stylesheet" href="/style.css" type="text/css" />
20 </head>
21
22 <body>
23 [% INCLUDE static.inc %]
24
25
26 <div class="content">
27
28             <h1>Download - Mirror List</h1>
29
30             <p><strong>NOTE:</strong> Please visit the <a href="/download/">download webpage</a> if you don't need the full mirror list.</p>
31
32             <h2>Download via HTTPS/FTP</h2>
33
34             <p><a href="http://en.wikipedia.org/wiki/Geo_targeting">GeoIP</a>
35             (automatically try to figure out the best matching mirror):</p>
36
37             <ul>
38               <li><a href="https://download.grml.org/">https://download.grml.org/</a></li>
39             </ul>
40
41             [% FOREACH region IN mirrors.keys.sort %]
42               <h3>Mirrors in [% region.substr(3) %] </h3>
43
44               [% FOREACH mirror IN mirrors.$region.keys.sort %]
45               <p>[% mirror %] ([% mirrors.$region.$mirror.location %])</p>
46                 [% FOREACH type IN [ 'grml-http' 'grml-rsync' 'grml-ftp' ] %]
47                 [% NEXT UNLESS mirrors.$region.$mirror.$type %]
48               <ul>
49                   [% IF type.substr(5) == 'http' %]
50                 <li><a href="https://[% mirror %]/[% mirrors.$region.$mirror.$type %]">https://[% mirror %]/[% mirrors.$region.$mirror.$type %]</a></li>
51                   [% ELSE %]
52                 <li><a href="[% type.substr(5) %]://[% mirror %]/[% mirrors.$region.$mirror.$type %]">[% type.substr(5) %]://[% mirror %]/[% mirrors.$region.$mirror.$type %]</a></li>
53                   [% END %]
54               </ul>
55
56                 [% END %]
57               [% END %]
58             [% END %]
59
60             <hr />
61
62             <p><em>If you are interested in providing a mirror for Grml please visit
63             <a href="https://github.com/grml/grml-mirrors">our grml-mirrors project</a>
64             or <a href="/contact/">contact us</a>.</em>/</p>
65
66 </div>
67
68 [% INCLUDE static_bottom.inc %]