Skip to content

Commit

Permalink
[FEATURE] Add the success gallery and partner elements
Browse files Browse the repository at this point in the history
  • Loading branch information
DigitalZombies committed Apr 11, 2024
1 parent fc86848 commit ed5d32c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<html
data-namespace-typo3-fluid="true"
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
>
<div class="background-secondary py-12">
<div class="container px-5 mx-auto">
<f:render partial="Content/Header"
arguments="{headerLayout: data.header_layout, headerStyle: data.header_style, header: data.header}"/>
<div class="grid md:grid-cols-6 grid-cols-4 gap-5 md:gap-8">
<f:if condition="{data.assets}">
<f:for each="{data.assets}" as="media">
<f:image src="{media.uid}" treatIdAsReference="1" class="object-cover h-full w-full" width="300"/>
</f:for>
</f:if>
</div>
</div>
</div>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<html
data-namespace-typo3-fluid="true"
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
>
<div class="mt-8">
<f:render partial="Content/Header"
arguments="{headerLayout: data.header_layout, headerStyle: data.header_style, header: data.header}"/>
<div class="grid md:grid-cols-4 grid-cols-2 gap-5 md:gap-8">
<f:if condition="{data.assets}">
<f:for each="{data.assets}" as="media">
<div class="rounded background-white p-5 flex justify-center">
<f:image src="{media.uid}" treatIdAsReference="1" class="h-16 w-auto object-contain" width="400"/>
</div>
</f:for>
</f:if>
</div>
</div>
</html>

0 comments on commit ed5d32c

Please sign in to comment.