Mod for distributing the {CONTENT} in multi-column-layouts or any other place you want to.
Dazu muss man nur in den Inhalten der Contenttypes (oder auch als eigener Contenttype) eine beliebig benamten Trenner (Buchstaben,Zahlen Großschreibung) der FORM %%%TRENNERNAME%%% einfuegen.
When writing an article you just have to put in an freely named splitter(letters,digits,upper case) like %%%PARTNAME%%%.
Man hat dann durch die neuen Content-Variablen {CONTENT_TRENNERNAME} Zugriff auf die so aufgeteilten Inhalte eines Artikels. {CONTENT} bleibt bestehen, enthaelt aber nicht die anderen Contentteile.
Now you can access each part with the new Content-Var {CONTENT_PARTNAME}. {CONTENT} still exists but without hte content of the different parts.
Um es etwas verstaendlicher zu machen hier ein paar Screenshots:
To make it more clearly see the screenshots
Artikelsetup/articlesetup:

Eintrag im Hauptblock der Vorlage/Code in mainblock of template:
Code: Select all
<table border="1">
<tr>
<td valign="top">{CONTENT}</td>
<td valign="top">{CONTENT_SPALTE2}</td>
<td valign="top">{CONTENT_SPALTE3}</td>
</tr>
</table>
