Skip to content

Instantly share code, notes, and snippets.

@chrismrgn
Created December 30, 2014 23:33
Show Gist options
  • Save chrismrgn/4673cb77254d6cce1617 to your computer and use it in GitHub Desktop.
Save chrismrgn/4673cb77254d6cce1617 to your computer and use it in GitHub Desktop.
PageTemplate.cshtml
@@model PageViewModel
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h1>@@Model.Title</h1>
<div>
@@if(Model.ComponentPresentations != null)
{
foreach (ComponentPresentation componentPresentation in Model.ComponentPresentations)
{
@@Html.RenderPresentation(componentPresentation)
}
}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment