Skip to content

Instantly share code, notes, and snippets.

@murven
Created March 8, 2016 18:52
Show Gist options
  • Save murven/30615dd1cbdea901595b to your computer and use it in GitHub Desktop.
Save murven/30615dd1cbdea901595b to your computer and use it in GitHub Desktop.
Sitecore Master Layout
@using Sitecore.Mvc.Presentation
@using Sitecore.Mvc
@model RenderingModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@Model.Item.Fields["Title"]</title>
</head>
<body>
@Html.Sitecore().ViewRendering("Header")
@RenderBody()
@Html.Sitecore().ViewRendering("Footer")
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment