@@ -, +, @@ page - Hit the "tab" key to highlight the "Skip to main content" link. - Hit "Enter." - The page should scroll to the top of the list of libraries. - Open one of the library detail pages and confirm that the "Skip to main content" link works on that page too. --- .../opac-tmpl/bootstrap/en/modules/opac-library.tt | 29 +++++++++++----------- 1 file changed, 15 insertions(+), 14 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt @@ -129,23 +129,24 @@ [% ELSE %] -

[% IF ( singleBranchMode ) %]Library[% ELSE %]Libraries[% END %]

+
+

[% IF ( singleBranchMode ) %]Library[% ELSE %]Libraries[% END %]

- [% FOREACH library IN libraries %] -

- [% IF ( libraries.count > 1 ) %] - [% library.branchname | html %] - [% ELSE %] - [% library.branchname | html %] + [% FOREACH library IN libraries %] +

+ [% IF ( libraries.count > 1 ) %] + [% library.branchname | html %] + [% ELSE %] + [% library.branchname | html %] + [% END %] +

+ [% PROCESS library_info %] +
+ [% IF ( libraries.count == 1 ) %] + [% PROCESS library_description %] [% END %] - - [% PROCESS library_info %] -
- [% IF ( libraries.count == 1 ) %] - [% PROCESS library_description %] [% END %] - [% END %] - +
[% END %] --