Last active
June 12, 2018 09:11
-
-
Save h3nn3s/728113b0a81975bd5449 to your computer and use it in GitHub Desktop.
TYPO3 Gridelements with FLUIDTEMPLATE (3 columns)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* TypoScript | |
*/ | |
# render headline | |
#tt_content.gridelements_pi1.10 = < lib.stdheader | |
tt_content.gridelements_pi1.20.10.setup { | |
1 < lib.gridelements.defaultGridSetup | |
1 { | |
cObject = FLUIDTEMPLATE | |
cObject { | |
file = fileadmin/templates/wintermarkendialog.de/partials/Gridelements/3col-33-33-33.html | |
} | |
} | |
} | |
/* | |
* HTML Template | |
*/ | |
<div class="row"> | |
<div class="four columns"> | |
<f:format.raw> | |
{data.tx_gridelements_view_column_1} | |
</f:format.raw> | |
</div> | |
<div class="four columns"> | |
<f:format.raw> | |
{data.tx_gridelements_view_column_2} | |
</f:format.raw> | |
</div> | |
<div class="four columns"> | |
<f:format.raw> | |
{data.tx_gridelements_view_column_3} | |
</f:format.raw> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment