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

One Page Website.


Go to End


4 Posts   2109 Views

Avatar
vsergiu

Community Member, 3 Posts

26 November 2013 at 2:39am

Edited: 26/11/2013 2:57am

Hi all.

I have a question for all of you.

Which is the best solution to develop a one page website in Silverstripe ?

For example:
I thought, to make use of '<% include %>'
something like this: <% include Page_Type(Class Name)_content %>
so basically I have a .ss inlude file for each page type, where I will have different layout structure.
This is my third project in silverstripe and first one with design (One Page).

Avatar
haugen

Community Member, 14 Posts

27 November 2013 at 9:25pm

I made an own class for my home, which I called home. Then I created children of this with all the content.

In my Home.ss I have this:

<% loop Children %>
        <div id="$URLSegment" class="span12">
                $renderWith($ClassName)
        </div>
<% end_loop%>

Worked out great for me. Good luck with your project :)

Avatar
vsergiu

Community Member, 3 Posts

28 November 2013 at 12:28am

Thanks for the suggestion,
I think that your solution is much better than mine, I will give it a try.

Avatar
HollyO

Community Member, 1 Post

16 July 2014 at 3:41am

How do you add an anchor tag to the children that are displayed on the one page website and then reference those anchors in the primary navigation menu?