Created
February 10, 2014 11:55
-
-
Save jhorsman/8914561 to your computer and use it in GitHub Desktop.
Tridion DWT layout TBB goodness, from http://www.tridiondeveloper.com/tag/dreamweaver-templating
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
<!-- TemplateBeginRepeat name="Component.Fields.repeatField" --> | |
<!-- TemplateBeginIf cond = "TemplateRepeatIndex == 0 " --> | |
<ul> | |
<!-- TemplateEndIf --> | |
<li>@@Field@@</li> | |
<!-- TemplateBeginIf cond = "TemplateRepeatIndex) == @@CollectionLength("repeatField")@@-1" --> | |
</ul> | |
<!-- TemplateEndIf --> | |
<!-- TemplateEndRepeat --> |
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
<!-- TemplateBeginRepeat name="Component.Fields.repeatField" --> | |
<!-- TemplateBeginIf cond = "TemplateRepeatIndex == 0 " --> | |
<ul> | |
<!-- TemplateEndIf --> | |
<li>@@Field@@</li> | |
<!-- TemplateBeginIf cond = "@@parseInt(TemplateRepeatIndex)@@ == @@parseInt(${CollectionLength("repeatField")})@@-1" --> | |
</ul> | |
<!-- TemplateEndIf --> | |
<!-- TemplateEndRepeat --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment