Question

i use for a project the fluid template engine. Here i want to seperate all Headline-Elements from the Backend (column normal).

My Idea is, to write in my TS the following code:

lib.pageHeadline = USER
lib.pageHeadline{
   [...]
}

And in the page object the following code

10 = FLUIDTEMPLATE
10{
  [...]
  variables{
    [...]
    pageHeadline < lib.pageHeadline
  }
}

The problem is to become only the headline. I hope my problem is understandable.

Was it helpful?

Solution

Ok ... it's easy. Here my solution, to render Headlines seperate from the content for Fluid-Templates.

temp.pageHeadline = CONTENT
temp.pageHeadline{
    table = tt_content
    select{
        pidInList = this
        where = colPos = 0
    }
    renderObj = TEXT
    renderObj.field = header
}




pageHeadline < temp.pageHeadline

This is all.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top