Attention

TYPO3 v6 has reached its end-of-life April 18th, 2017 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

There is no further ELTS support. It is strongly recommended updating your project.

styles.content.get

# Our code so far starts like that:
page.10 = CONTENT
page.10.table = tt_content
page.10.select {

    # Use the sorting of the backend. We could as well use the date field or the header.
    orderBy = sorting

    # normal column
    where = colPos = 0
}

Thanks to css_styled_content, it suffices to just write the following instead to achieve the same:

# This returns content from the "normal" column (colPos = 0).
page.10 < styles.content.get

For the other columns there are according default definitions, as well:

# This returns content from the "left" column (colPos = 1).
page.10 < styles.content.getLeft

# This returns content from the "right" column (colPos = 2).
page.10 < styles.content.getRight

# This returns content from the "border" column (colPos = 3).
page.10 < styles.content.getBorder

In css_styled_content the border is internally defined as follows:

# The normal column is copied.
styles.content.getBorder < styles.content.get

# After that, colPos is altered.
styles.content.getBorder.select.where = colPos=3