View | Details | Raw Unified | Return to bug 12162
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/bodytag.inc (+15 lines)
Line 0 Link Here
1
[% classprop  = 'class="' %]
2
[% IF LoginBranchcode.defined %]
3
    [% classprop = classprop _ 'branch-' _ LoginBranchcode %]
4
[% ELSE %]
5
    [% classprop = classprop _ 'branch-default' %]
6
[% END %]
7
[% IF bodyclass.defined %]
8
    [% classprop = classprop _ ' ' _ bodyclass %]
9
[% END %]
10
[% classprop = classprop _ '"' %]
11
12
[% IF bodyid.defined %]
13
    [% idprop = 'ID="' _ bodyid _ '" ' %]
14
[% END %]
15
<body [%idprop%][% classprop %] >
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-1 / +1 lines)
Lines 4-10 Link Here
4
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% BLOCK cssinclude %][% END %]
5
[% BLOCK cssinclude %][% END %]
6
</head>
6
</head>
7
<body id="opac-main">
7
[% INCLUDE 'bodytag.inc' bodyid='opac-main' %]
8
[% INCLUDE 'masthead.inc' %]
8
[% INCLUDE 'masthead.inc' %]
9
9
10
<div class="main">
10
<div class="main">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-2 / +1 lines)
Lines 6-12 Link Here
6
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
7
[% BLOCK cssinclude %][% END %]
7
[% BLOCK cssinclude %][% END %]
8
</head>
8
</head>
9
<body id="opac-user" class="scrollto">
9
[% INCLUDE 'bodytag.inc' bodyid='opac-user' bodyclass='scrollto' %]
10
[% INCLUDE 'masthead.inc' %]
10
[% INCLUDE 'masthead.inc' %]
11
11
12
<div class="main">
12
<div class="main">
13
- 

Return to bug 12162