views:

162

answers:

1

I have some hidden pages like this:

/staff
 John
 Bob
 Mike

In all this pages i have extended content, like photo, bio and additional info. I make this, to have logical structure and quick edit without editing radiant code.

My question is, how i can with base radius functional get access to this pages in this code:

<r:find url="/staff">
    <r:children:each by="title" order="asc">
     <r:title />
    </r:children:each>
</r:find>
A: 

Do you mean something like the following?

<r:find url="/staff">
  <r:children:each by="title" order="asc">
    <r:title />
    <r:content part="photo" />
    <r:content part="bio" />
    <r:content part="info" />
  </r:children:each>
</r:find>
Graza