2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-05-04 16:28:53 +00:00
2021-11-07 20:40:00 +01:00

14 lines
685 B
HTML

<section class="cm-gray-2 body-font">
{% unless include.no_container %}
<div class="container px-5 py-24 mx-auto">
{% endunless %}
<div class="lg:w-2/3 flex flex-col sm:flex-row sm:items-center items-start mx-auto">
<h1 class="flex-grow sm:pr-16 text-2xl font-medium title-font cm-gray-1">{{ include.cta.text }}</h1>
{% for item in include.cta.btn %}
<button href="{{ item.link }}" class="flex-shrink-0 text-white bg-secondary border-0 py-2 px-8 focus:outline-none hover:bg-primary rounded text-lg mt-10 sm:mt-0">{{ item.text }}</button>
{% endfor %}
</div>
{% unless include.no_container %}
</div>
{% endunless %}
</section>