Clean up whitespace in primary Python / HTML files
[pgweb/local.git] / templates / downloads / mirrorselect.html
blob68307ecb302e6c9b337d5a0386e6cabcf0a69cab
1 {%extends "base/page.html"%}
2 {%block title%}Choose a download mirror{%endblock%}
3 {%block extrahead%}
4 <style>
5 div.mirrorselect {
6 // border: 1px solid black;
7 display: inline-block;
8 width: 110px;
9 text-align: center;
10 height: 70px;
12 </style>
13 {%endblock%}
14 {%block contents%}
15 <h1>Choose a download mirror</h1>
16 <p><b>Downloading: </b> {{path}}</p>
19 {%if near_mirrors%}
20 <p><b>We think these mirrors are near you:</b></p>
21 <div id="nearmirrorwrap">
22 {%for mirror in near_mirrors%}
23 {%include "downloads/inc_mirror.html"%}
24 {%endfor%}
25 </div>
26 {%endif%}
28 <p><b>Choose any other mirror in the world:</b></p>
29 <div id="mainmirrorwrap">
30 {%for mirror in all_mirrors%}
31 {%include "downloads/inc_mirror.html"%}
32 {%endfor%}
33 </div>
35 {%endblock%}