diff options
author | Dan McGee <dan@archlinux.org> | 2012-04-26 12:05:57 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-04-26 12:05:57 -0500 |
commit | 9616aec563baff19898c5a3185bc2011734544cb (patch) | |
tree | 47af17c5419f6a3dd01d97aa4085d1a13ef01ad2 /templates/public/download.html | |
parent | e35ad5dd8e3e776d39a13d1f6cd18c3fa4d49b27 (diff) |
Add empty 'alt' attribute for all country flag images
These are all used purely for decoration, and the country name itself is
right next to the flag image, so we can safely mark these as "invisible"
to screen readers, text browsers, etc.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/download.html')
-rw-r--r-- | templates/public/download.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/public/download.html b/templates/public/download.html index 4d75268a..f57e565a 100644 --- a/templates/public/download.html +++ b/templates/public/download.html @@ -153,7 +153,7 @@ <div id="download-mirrors"> {% regroup mirror_urls by real_country as grouped_urls %} {% for country in grouped_urls %} - {% if country.grouper %}<h5><img src="{{ country.grouper.flag }}"/> {{ country.grouper.name }}</h5> + {% if country.grouper %}<h5><img src="{{ country.grouper.flag }}" alt=""/> {{ country.grouper.name }}</h5> {% else %}<h5>Worldwide</h5>{% endif %} <ul> {% for mirror_url in country.list %} |