1stPlugin¶
Storage¶
Location of your first partial:
EXT:my_ext/Resources/Private/View/xblog/
└── 1stPlugin
└── Partials
└── Externaltemplate
├── List
│ └── 01.html
└── Single
└── 01.html
Content¶
For technical reasons, partials are required for the 1stPlugin. All list partials have the same code, as do all partials for the single view.
List¶
All partials on this level have the same code. Partials must called 01, 02, 03, ...
<!-- EXT:my_ext/Resources/Private/View/xblog/1stPlugin/Partials/Externaltemplate/List/01.html -->
<f:render partial="Main/List" arguments="{_all}" />
Single¶
All partials on this level have the same code. Partials must called 01, 02, 03, ...
<!-- EXT:my_ext/Resources/Private/View/xblog/1stPlugin/Partials/Externaltemplate/Single/01.html -->
<div id="x{tt_content.uid}" class="{piWrapClass}">
<f:format.raw>{content}</f:format.raw>
</div>