I am using MVC for my layout templates. I have placeholders in both the root and the nested templates. I am able to add content to the placeholders when creating a page. But when I view those pages the content is not inserted.
Here is an example of my templates.
Root.cshtml
<
html
>
head
</
body
div
class
=
"sfPublicWrapper"
id
"PublicWrapper"
@Html.SfPlaceHolder("TopNavigation")
@RenderBody()
@Html.SfPlaceHolder("Footer")
Nested.cshtml
@
Layout = "~/Mvc/Views/Shared/AssociateRoot.cshtml";
@Html.SfPlaceHolder("ModalContent")
@Html.SfPlaceHolder("InnerContent")
>More Content</
Any content put in the Footer placeholder or the navigation placeholder is not displayed. Any content placed in ModalContent or InnerContent does display. No errors are received that I can see.