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

features -> read more link

This commit is contained in:
Matthias Mair 2021-11-08 18:44:31 +01:00
parent 9cdf7e44c7
commit 74d8410d77
2 changed files with 9 additions and 4 deletions

View File

@ -3,7 +3,12 @@
<div class="flex flex-wrap w-full mb-4">
<div class="lg:w-1/2 w-full mb-6 lg:mb-0">
<a class="anchor" id="{{ include.data.header.ref }}"></a>
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-2 cm-gray-1">{{ include.data.header.title }}</h1>
<div class="inline-flex items-center">
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-2 cm-gray-1">{{ include.data.header.title }}</h1>
{% if include.link %}
<a href="{{ include.link }}">{% include learn_more.html %}</a>
{% endif %}
</div>
<div class="h-1 w-20 bg-secondary rounded"></div>
</div>
<p class="lg:w-1/2 w-full leading-relaxed cm-gray-3">{{ include.data.header.text }}</p>

View File

@ -8,11 +8,11 @@ main_page: True
{% include functions.html data=site.data.general.function %}
{% include features.html data=site.data.for_maker %}
{% include features.html data=site.data.for_maker link='/maker' %}
{% include features.html data=site.data.for_business %}
{% include features.html data=site.data.for_business link='/business' %}
{% include features.html data=site.data.for_edu %}
{% include features.html data=site.data.for_edu link='/education' %}
{% include stats.html data=site.data.general.stats %}