Skip to content
Snippets Groups Projects
Commit a78cf9c5 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Update documentation

parent e5fbf59e
No related branches found
No related tags found
No related merge requests found
...@@ -86,6 +86,25 @@ By default it will resolve to the following code if not provided by you: ...@@ -86,6 +86,25 @@ By default it will resolve to the following code if not provided by you:
lib.mainContent < styles.content.col1 lib.mainContent < styles.content.col1
``` ```
### Example integration into your page template
Finally you need to output the **INTRO** and **CONTENT** variable in your page template:
<main>
<!--TYPO3SEARCH_begin-->
<f:if condition="{INTRO}">
<div class="intro-section">
{INTRO -> f:format.raw()}
{BREADCRUMB_MENU -> f:format.raw()}
</div>
</f:if>
<div class="main-content">
{CONTENT -> f:format.raw()}
</div>
<!--TYPO3SEARCH_end-->
</main>
### Tags ### Tags
In addition to categories, multiple tags can be created and specified for each news page. In addition to categories, multiple tags can be created and specified for each news page.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment