diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-11-14 18:14:39 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-11-14 18:23:36 +0000 |
commit | 62e37f1d8d57ee8eebf6e8ecc388aeef23493e5d (patch) | |
tree | ee977fd8029019a0591f5ff605367a6a6ce3a936 /templates | |
parent | d9ec686462f6232480300324e81413602dc872af (diff) |
Make sentence a link for better accessibility.
For starters, it actually appears on focus.
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/web/fixmystreet.com/around/_report_banner.html | 11 | ||||
-rwxr-xr-x | templates/web/fixmystreet/around/_report_banner.html | 11 |
2 files changed, 6 insertions, 16 deletions
diff --git a/templates/web/fixmystreet.com/around/_report_banner.html b/templates/web/fixmystreet.com/around/_report_banner.html index bd47a1b54..9d0d9bdfe 100755 --- a/templates/web/fixmystreet.com/around/_report_banner.html +++ b/templates/web/fixmystreet.com/around/_report_banner.html @@ -6,11 +6,6 @@ <span>Yellow pins show existing reports</span> [% END %] </h1> -<p id="skip-this-step" class="variant0"> - [% - tprintf( - loc("Can't see the map? <a href='%s' rel='nofollow'>Skip this step</a>"), - url_skip - ) - %] -</p> +<a id="skip-this-step" class="variant0" href="[% url_skip %]" rel="nofollow"> + [% loc("Can't see the map? <em>Skip this step</em>") %] +</a> diff --git a/templates/web/fixmystreet/around/_report_banner.html b/templates/web/fixmystreet/around/_report_banner.html index 9edf6e171..5ec7300d6 100755 --- a/templates/web/fixmystreet/around/_report_banner.html +++ b/templates/web/fixmystreet/around/_report_banner.html @@ -4,11 +4,6 @@ <span>Yellow pins show existing reports</span> [% END %] </h1> -<p id="skip-this-step"> - [% - tprintf( - loc("Can't see the map? <a href='%s' rel='nofollow'>Skip this step</a>"), - url_skip - ) - %] -</p> +<a id="skip-this-step" href="[% url_skip %]" rel="nofollow"> + [% loc("Can't see the map? <em>Skip this step</em>") %] +</a> |