Lines 13-18
Link Here
|
13 |
[% SET OpacCustomSearch = AdditionalContents.get( location => "OpacCustomSearch", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
13 |
[% SET OpacCustomSearch = AdditionalContents.get( location => "OpacCustomSearch", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
14 |
[% SET OpacLoginInstructions = AdditionalContents.get( location => "OpacLoginInstructions", lang => lang, library => branchcode || default_branch ) %] |
14 |
[% SET OpacLoginInstructions = AdditionalContents.get( location => "OpacLoginInstructions", lang => lang, library => branchcode || default_branch ) %] |
15 |
[% SET OpacMoreSearches = AdditionalContents.get( location => "OpacMoreSearches", lang => lang, library => branchcode || default_branch ) %] |
15 |
[% SET OpacMoreSearches = AdditionalContents.get( location => "OpacMoreSearches", lang => lang, library => branchcode || default_branch ) %] |
|
|
16 |
[% SET CookieConsentBar = AdditionalContents.get( location => "CookieConsentBar", lang => lang, library => branchcode || default_branch ) %] |
17 |
[% SET CookieConsentPopup = AdditionalContents.get( location => "CookieConsentPopup", lang => lang, library => branchcode || default_branch ) %] |
16 |
|
18 |
|
17 |
<button id="scrolltocontent">Skip to main content</button> |
19 |
<button id="scrolltocontent">Skip to main content</button> |
18 |
<div id="wrapper"> |
20 |
<div id="wrapper"> |
Lines 453-469
Link Here
|
453 |
</div> <!-- /.modal-dialog --> |
455 |
</div> <!-- /.modal-dialog --> |
454 |
</div> <!-- /#modalAuth --> |
456 |
</div> <!-- /#modalAuth --> |
455 |
[% IF Koha.Preference( 'CookieConsent' ) %] |
457 |
[% IF Koha.Preference( 'CookieConsent' ) %] |
456 |
<!-- Cookie consent bar --> |
458 |
<!-- Cookie consent bar --> |
457 |
<div id="cookieConsentBar" aria-hidden="true"> |
459 |
<div id="cookieConsentBar" aria-hidden="true"> |
458 |
[% Koha.Preference( 'CookieConsentBar' ) | $raw %] |
460 |
[% IF ( CookieConsentBar ) %] |
459 |
<div id="consentButtons"> |
461 |
[% PROCESS koha_news_block news => CookieConsentBar %] |
460 |
<button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button> |
|
|
461 |
[% IF ( Koha.Preference( 'CookieConsentedJS' ).length > 0 ) %] |
462 |
<button type="button" class="btn btn-primary consentAcceptEssential">Accept only essential cookies</button> |
463 |
<button type="button" class="btn btn-info" id="consentMoreInfo" aria-label="Click to view more information about your cookie consents">More information</button> |
464 |
[% END %] |
462 |
[% END %] |
465 |
</div> |
463 |
<div id="consentButtons"> |
466 |
</div> <!-- /#cookieConsentBar --> |
464 |
<button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button> |
|
|
465 |
[% IF ( Koha.Preference( 'CookieConsentedJS' ).length > 0 ) %] |
466 |
<button type="button" class="btn btn-primary consentAcceptEssential">Accept only essential cookies</button> |
467 |
<button type="button" class="btn btn-info" id="consentMoreInfo" aria-label="Click to view more information about your cookie consents">More information</button> |
468 |
[% END %] |
469 |
</div> |
470 |
</div> <!-- /#cookieConsentBar --> |
467 |
<!-- Cookie consent modal --> |
471 |
<!-- Cookie consent modal --> |
468 |
<div id="cookieConsentModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="cookieConsentModalLabel" aria-hidden="true"> |
472 |
<div id="cookieConsentModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="cookieConsentModalLabel" aria-hidden="true"> |
469 |
<div class="modal-dialog"> |
473 |
<div class="modal-dialog"> |
Lines 472-480
Link Here
|
472 |
<h2 class="modal-title" id="cookieConsentModalLabel">Cookie consent</h2> |
476 |
<h2 class="modal-title" id="cookieConsentModalLabel">Cookie consent</h2> |
473 |
</div> |
477 |
</div> |
474 |
<div class="modal-body"> |
478 |
<div class="modal-body"> |
475 |
[% IF Koha.Preference( 'CookieConsentPopup' ) %] |
479 |
[% IF ( CookieConsentPopup ) %] |
476 |
<div id="cookieConsentPopupText"> |
480 |
<div id="cookieConsentPopupText"> |
477 |
[% Koha.Preference( 'CookieConsentPopup' ) | $raw %] |
481 |
[% PROCESS koha_news_block news => CookieConsentPopup %] |
478 |
</div> |
482 |
</div> |
479 |
[% END %] |
483 |
[% END %] |
480 |
<div id="consentCookieList"> |
484 |
<div id="consentCookieList"> |
481 |
- |
|
|