PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
cookie-consent
/
resources
/
views
@if ($cookieConsentConfig['enabled'] && !$alreadyConsentedWithCookies) <div class="js-cookie-consent cookie-consent" style="background-color: {{ theme_option('cookie_consent_background_color', '#000') }} !important; color: {{ theme_option('cookie_consent_text_color', '#fff') }} !important;"> <div class="cookie-consent-body" style="max-width: {{ theme_option('cookie_consent_max_width', 1170) }}px;"> <span class="cookie-consent__message"> {{ theme_option('cookie_consent_message', trans('plugins/cookie-consent::cookie-consent.message')) }} @if (theme_option('cookie_consent_learn_more_url') && theme_option('cookie_consent_learn_more_text')) <a href="{{ url(theme_option('cookie_consent_learn_more_url')) }}">{{ theme_option('cookie_consent_learn_more_text') }}</a> @endif </span> <button class="js-cookie-consent-agree cookie-consent__agree" style="background-color: {{ theme_option('cookie_consent_background_color', '#000') }} !important; color: {{ theme_option('cookie_consent_text_color', '#fff') }} !important; border: 1px solid {{ theme_option('cookie_consent_text_color', '#fff') }} !important;"> {{ theme_option('cookie_consent_button_text', trans('plugins/cookie-consent::cookie-consent.button_text')) }} </button> </div> </div> <div data-site-cookie-name="{{ $cookieConsentConfig['cookie_name'] }}"></div> <div data-site-cookie-lifetime="{{ $cookieConsentConfig['cookie_lifetime'] }}"></div> <div data-site-cookie-domain="{{ config('session.domain') ?? request()->getHost() }}"></div> <div data-site-session-secure="{{ config('session.secure') ? ';secure' : null }}"></div> @endif
[+]
..
[-] index.blade.php
[edit]