2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-04-28 05:26:44 +00:00

make buttons configurable

This commit is contained in:
Matthias Mair 2022-04-22 23:55:24 +02:00
parent 9024915389
commit 9ccd5ee9a1
4 changed files with 23 additions and 3 deletions

View File

@ -12,10 +12,16 @@
{% if include.detail %} {% if include.detail %}
<p class="mb-8 leading-relaxed">{{ include.detail }}</p> <p class="mb-8 leading-relaxed">{{ include.detail }}</p>
{% endif %} {% endif %}
{% if include.buttons %}
<div class="flex justify-center"> <div class="flex justify-center">
<button class="inline-flex text-white bg-secondary border-0 py-2 px-6 focus:outline-none hover:bg-primary rounded text-lg">Button</button> {% for item in include.buttons %}
<button class="ml-4 inline-flex cm-hvr-btn border-0 py-2 px-6 focus:outline-none text-lg">Button</button> <button class="
{% if forloop.index != 0 %}ml-4{% endif %}
{% if item.primary %}cm-hvr-btn-primary{% else%}cm-hvr-btn{% endif%}
inline-flex border-0 py-2 px-6 focus:outline-none text-lg">{{item.text}}</button>
{% endfor %}
</div> </div>
{% endif %}
</div> </div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6"> <div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6">
{% if include.image %} {% if include.image %}

View File

@ -2,7 +2,14 @@
layout: default layout: default
--- ---
{% include block/hero.html title=site.tagline title_2=page.title_2 image='https://dummyimage.com/860x600' color='with InvenTree' detail=page.long_text %} {% include block/hero.html
title=site.tagline
title_2=page.title_2
image='https://dummyimage.com/860x600'
color='with InvenTree'
detail=page.long_text
buttons=page.buttons
%}
{% assign data = site.data[page.data] %} {% assign data = site.data[page.data] %}
{% include block/features.html data=data extend=true %} {% include block/features.html data=data extend=true %}

View File

@ -32,6 +32,10 @@ layout: empty
@apply text-gray-700 bg-gray-100 hover:bg-gray-200 rounded @apply text-gray-700 bg-gray-100 hover:bg-gray-200 rounded
} }
.cm-hvr-btn-primary {
@apply text-white bg-secondary hover:bg-primary rounded
}
.cm-gray-1 { .cm-gray-1 {
@apply text-gray-900 @apply text-gray-900
} }

View File

@ -6,4 +6,7 @@ data: for_maker
long_text: | long_text: |
lorem ipsum place for lorem ipsum place for
multiline inteligent text multiline inteligent text
buttons:
- text: Button
- text: Button1
--- ---