Skip to content
Snippets Groups Projects
Select Git revision
  • 4bf2c505bbbbec750ac90c53c311e64acf60608e
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

_00-head.mustache

Blame
  • carousel.html 1.07 KiB
    <div class="__js-root">
      <div class="header-carousel">
        <div class="block h-[700px] xl:h-screen relative">
          <img
            class="
              header-carousel--image
              lg:hidden
            "
            src="{{ mobile_background_image_url }}"
          >
    
          <img
            class="
              header-carousel--image
              hidden lg:block
            "
            src="{{ desktop_background_image_url }}"
          >
    
          <div class="onboarding--header-carousel-text-wrapper h-full" style="box-sizing: border-box">
            <div
              class="
                container--wide px-0 h-full flex flex-col justify-center items-start gap-6
              "
              style="box-sizing: border-box"
            >
    
              <h1 class="px-5 flex flex-col text-black whitespace-pre-line">
                {{ heading|safe }}
              </h1>
    
              <div class="ml-4 text-lg">
                {% include "patterns/atoms/buttons/round_button.html" with button_text=button_text classes="bg-white text-black duration-300 hover:bg-black hover:text-white" %}
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>