@// HTML.Include will render a div with a class="user-display"
@// Can use this -> {Html.Include("User");}
@// or the following. At least they appear to do the same thing currently. The first is a standard Html.Include, the second "displays the (New) User shape"
@Display.User()
@// Top Navigation and branding
@WorkContext.CurrentSite.SiteName
@Display(Model.Navigation)
@// Main Content
@Display(Model.Content)
@Display(Model.search)
@Display(Model.sidebar)
@// End Content
@Display.Footer(Navigation:Model.Navigation)