diff options
author | Christian Pointner <equinox@ffgraz.net> | 2012-06-19 16:14:32 +0000 |
---|---|---|
committer | Christian Pointner <equinox@ffgraz.net> | 2012-06-19 16:14:32 +0000 |
commit | 1a76abcd84964ff8710c02d9d8ea0629efa7a01c (patch) | |
tree | da27ff445777553c00b7020ccf23f3f32d4ae5cb /inc | |
parent | f5a740dbb6212744ca4d9877004027426cda2b42 (diff) |
added alt text to <img>
Diffstat (limited to 'inc')
-rw-r--r-- | inc/lang.shtml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/inc/lang.shtml b/inc/lang.shtml index 23b433a..8ee2ae5 100644 --- a/inc/lang.shtml +++ b/inc/lang.shtml @@ -1,21 +1,21 @@ <!--#set var="sitehtml" value="${SITE}.html" --> <ul id="lang"> <!--#if expr="${LANG} == de" --> - <li><img src="/images/at_dis.png" /><img src="/images/de_dis.png" /></li> + <li><img src="/images/at_dis.png" alt="AT" /><img src="/images/de_dis.png" alt="DE" /></li> <!--#else --> - <li><a href="/de/<!--#echo var="sitehtml" -->" title="Deutsche Version"><img src="/images/at.png" /><img src="/images/de.png" /></a></li> + <li><a href="/de/<!--#echo var="sitehtml" -->" title="Deutsche Version"><img src="/images/at.png" alt="AT" /><img src="/images/de.png" alt="DE" /></a></li> <!--#endif--> <!--#if expr="${LANG} == en" --> - <li><img src="/images/uk_dis.png" /><img src="/images/us_dis.png" /></li> + <li><img src="/images/uk_dis.png" alt="UK" /><img src="/images/us_dis.png" alt="US" /></li> <!--#else --> - <li><a href="/en/<!--#echo var="sitehtml" -->" title="English Version"><img src="/images/uk.png" /><img src="/images/us.png" /></a></li> + <li><a href="/en/<!--#echo var="sitehtml" -->" title="English Version"><img src="/images/uk.png" alt="UK" /><img src="/images/us.png" alt="US" /></a></li> <!--#endif--> <!--#if expr="${LANG} == si" --> - <li><img src="/images/si_dis.png" /> + <li><img src="/images/si_dis.png" alt="SI" /> <!--#else --> - <li><a href="/si/<!--#echo var="sitehtml" -->" title="Slovenska verzija"><img src="/images/si.png" /></a></li> + <li><a href="/si/<!--#echo var="sitehtml" -->" title="Slovenska verzija"><img src="/images/si.png" alt="SI" /></a></li> <!--#endif--> </ul> |