|
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 446-462
Link Here
|
| 446 |
</div> <!-- /.modal-dialog --> |
448 |
</div> <!-- /.modal-dialog --> |
| 447 |
</div> <!-- /#modalAuth --> |
449 |
</div> <!-- /#modalAuth --> |
| 448 |
[% IF Koha.Preference( 'CookieConsent' ) %] |
450 |
[% IF Koha.Preference( 'CookieConsent' ) %] |
| 449 |
<!-- Cookie consent bar --> |
451 |
<!-- Cookie consent bar --> |
| 450 |
<div id="cookieConsentBar" aria-hidden="true"> |
452 |
<div id="cookieConsentBar" aria-hidden="true"> |
| 451 |
[% Koha.Preference( 'CookieConsentBar' ) | $raw %] |
453 |
[% IF ( CookieConsentBar ) %] |
| 452 |
<div id="consentButtons"> |
454 |
[% PROCESS koha_news_block news => CookieConsentBar %] |
| 453 |
<button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button> |
|
|
| 454 |
[% IF ( Koha.Preference( 'CookieConsentedJS' ).length > 0 ) %] |
| 455 |
<button type="button" class="btn btn-primary consentAcceptEssential">Accept only essential cookies</button> |
| 456 |
<button type="button" class="btn btn-info" id="consentMoreInfo" aria-label="Click to view more information about your cookie consents">More information</button> |
| 457 |
[% END %] |
455 |
[% END %] |
| 458 |
</div> |
456 |
<div id="consentButtons"> |
| 459 |
</div> <!-- /#cookieConsentBar --> |
457 |
<button type="button" class="btn btn-primary consentAcceptAll">Accept all cookies</button> |
|
|
458 |
[% IF ( Koha.Preference( 'CookieConsentedJS' ).length > 0 ) %] |
| 459 |
<button type="button" class="btn btn-primary consentAcceptEssential">Accept only essential cookies</button> |
| 460 |
<button type="button" class="btn btn-info" id="consentMoreInfo" aria-label="Click to view more information about your cookie consents">More information</button> |
| 461 |
[% END %] |
| 462 |
</div> |
| 463 |
</div> <!-- /#cookieConsentBar --> |
| 460 |
<!-- Cookie consent modal --> |
464 |
<!-- Cookie consent modal --> |
| 461 |
<div id="cookieConsentModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="cookieConsentModalLabel" aria-hidden="true"> |
465 |
<div id="cookieConsentModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="cookieConsentModalLabel" aria-hidden="true"> |
| 462 |
<div class="modal-dialog"> |
466 |
<div class="modal-dialog"> |
|
Lines 465-473
Link Here
|
| 465 |
<h2 class="modal-title" id="cookieConsentModalLabel">Cookie consent</h2> |
469 |
<h2 class="modal-title" id="cookieConsentModalLabel">Cookie consent</h2> |
| 466 |
</div> |
470 |
</div> |
| 467 |
<div class="modal-body"> |
471 |
<div class="modal-body"> |
| 468 |
[% IF Koha.Preference( 'CookieConsentPopup' ) %] |
472 |
[% IF ( CookieConsentPopup ) %] |
| 469 |
<div id="cookieConsentPopupText"> |
473 |
<div id="cookieConsentPopupText"> |
| 470 |
[% Koha.Preference( 'CookieConsentPopup' ) | $raw %] |
474 |
[% PROCESS koha_news_block news => CookieConsentPopup %] |
| 471 |
</div> |
475 |
</div> |
| 472 |
[% END %] |
476 |
[% END %] |
| 473 |
<div id="consentCookieList"> |
477 |
<div id="consentCookieList"> |
| 474 |
- |
|
|