My pages structure is:
1 - Home
2 - Employees
2.1 - Bob
2.2 - Paul
2.3 - John
etc ..
What I want is that page "Employees" shows all the names and description of the Employees.
the page "Employees" HTML would be like this:
Bob
Bob works on "X" since bla bla bla ...
Paul
Paul is a engineers that bla bla bla
John
John doesn't do anything bla bla bla ...
In other words, a list of sub-pages:
{sub-page1 title}
{sub-page1 content
{sub-page2 title}
{sub-page2 content
{sub-page3 title}
{sub-page3 content
I could use the {menu ...} tag if it also list the {content} attribute, but it doesn't.
I guess that I have to use a structure like:
{foreach item=current from=contents}
{title}
{content
{/foreach}
Does anybody know how to do that

sorry about my english.