Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Show Content from 2 pages


Go to End


2 Posts   928 Views

Avatar
Bereusei

Community Member, 96 Posts

19 February 2011 at 7:45am

Edited: 19/02/2011 7:45am

Hi,
i´ve a little question. I have an menu with an submenu. Each item has several pages.
An example:
About us -> People -> Page 1
About us -> People -> Page 2

If I sit on page "People" I wanna get the content from Page 1 and 2 in HTML.

Here is my code:

<% if Children(1) %>
<div class="text"></div>
<div id="Pagination"></div>

<div id="hiddenresult" style="display:none;">

<!--This part of the code should repeat if there are more than two pages
at the first time $content should be content of page 1
at second time $content should be content of page 2-->
<% control children(1) %>
<div class="result $firstlast">
$content
</div>
<% end_control %>

</div>

<% else %>

<div class="text">
$Content
</div>
<% end_if %>

I hope it´s clear what I´m wanna do. Can anyone help?
Thanks,
Sascha

Avatar
Ryan M.

Community Member, 309 Posts

19 February 2011 at 4:17pm

Did you test that code? Looks like it should work. Don't forget $content should be $Content.