mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 20:02:23 +04:00
d8956a06d6
Co-authored-by: Bartek <xbartoszdobija@gmail.com>
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
---
|
|
// Port of preview/pages/cookie-banner.html (layout: default)
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
---
|
|
|
|
<DefaultLayout title="Cookie banner" pageHeader="Cookie banner" pageMenu="extra.cookie-banner">
|
|
<div
|
|
class="offcanvas offcanvas-bottom h-auto show"
|
|
tabindex="-1"
|
|
id="offcanvasBottom"
|
|
aria-modal="true"
|
|
role="dialog"
|
|
>
|
|
<div class="offcanvas-body">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col">
|
|
<strong>Do you like cookies?</strong> 🍪 We use cookies to ensure you get the best experience on our website.
|
|
<a href="./terms-of-service.html" target="_blank">Learn more</a>
|
|
</div>
|
|
<div class="col-auto">
|
|
<button type="button" class="btn btn-primary" data-bs-dismiss="offcanvas">
|
|
Essential Cookies Only
|
|
</button>
|
|
</div>
|
|
<div class="col-auto">
|
|
<button type="button" class="btn btn-primary" data-bs-dismiss="offcanvas">
|
|
Allow All Cookies
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|