update logo looping

This commit is contained in:
Ehab Hassan 2023-11-29 23:02:53 +02:00
parent defc94c867
commit 24211cdb87
4 changed files with 50 additions and 2 deletions

View File

@ -45,12 +45,27 @@ weight: 1
<!-- {% include "reviews.html" items=[
{ name = "Item 1", description = "Description 1", date = "2023-01-01" },
{ name = "Item 2", description = "Description 2", date = "2023-02-01" },
{ name = "Item 3", description = "Description 3", date = "2023-03-01" }
] %}
{% end %} -->
{% myloop(
items=["Item 1", "Item 2", "Item 3", "Item 4"])
%}
# test
{% end %}
<!-- section reviews --> <!-- section reviews -->
{% reviews( {% reviews(
reviews_name = "ehab", reviews_name = "Jhone",
reviews_date = "12/6/2023" reviews_date = "12/6/2023"
reviews_description = "test test" reviews_description = "test test"
@ -59,8 +74,18 @@ weight: 1
{% end %} {% end %}
{% logo(
logos=["https://purepng.com/public/uploads/large/purepng.com-disney-logologobrand-logoiconslogos-251519939495wtv86.png", "https://purepng.com/public/uploads/large/purepng.com-disney-logologobrand-logoiconslogos-251519939495wtv86.png", "https://purepng.com/public/uploads/large/purepng.com-disney-logologobrand-logoiconslogos-251519939495wtv86.png", "https://purepng.com/public/uploads/large/purepng.com-disney-logologobrand-logoiconslogos-251519939495wtv86.png"])
%}
<!-- section banner --> <!-- section banner -->
{% banner( {% banner(
banner_text = "This is a section of some simple filler text, also known as placeholder text.", banner_text = "This is a section of some simple filler text, also known as placeholder text.",
@ -68,6 +93,8 @@ weight: 1
) %} ) %}
</div> </div>

View File

@ -0,0 +1,16 @@
<div class="bg-white py-6 sm:py-8 lg:py-12">
<div class="mx-auto max-w-screen-2xl px-4 md:px-8">
<h2 class="mb-4 text-center text-2xl font-bold text-gray-800 md:mb-8 lg:text-3xl">Trusted by the best</h2>
<div class="grid grid-cols-2 gap-6 rounded-lg bg-indigo-100 p-6 sm:h-40 sm:content-evenly md:grid-cols-4">
<!-- logo - start -->
{% for logo in logos %}
<div class="flex justify-center text-indigo-500">
<img class="w-64" src="{{ logo }}" >
</div>
{% endfor %}
<!-- logo - end -->
</div>
</div>
</div>

View File

@ -0,0 +1,4 @@
{% for item in items %}
<p>{{ item }}</p>
{% endfor %}

View File

@ -46,7 +46,7 @@
<div class="divide-y"> <div class="divide-y">
<!-- review - start --> <!-- review - start -->
{# {% for item in items %} #}
<div class="flex flex-col gap-3 py-4 md:py-8"> <div class="flex flex-col gap-3 py-4 md:py-8">
<div> <div>
<span class="block text-sm font-bold">{{ reviews_name }}</span> <span class="block text-sm font-bold">{{ reviews_name }}</span>
@ -79,6 +79,7 @@
<p class="text-gray-600">{{ reviews_description }}</p> <p class="text-gray-600">{{ reviews_description }}</p>
</div> </div>
{# {% endfor %} #}
<!-- review - end --> <!-- review - end -->