Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created December 3, 2015 22:21
Show Gist options
  • Save samueleresca/ca0fcffce4bc99f93d8a to your computer and use it in GitHub Desktop.
Save samueleresca/ca0fcffce4bc99f93d8a to your computer and use it in GitHub Desktop.
@ViewBag.Title
@RenderSection("Header") <!--Renderizzo la sezione "Header"-->
@RenderSection("Body")<!--Renderizzo la sezione "Body"-->
@if (IsSectionDefined("Footer")) {
@RenderSection("Footer")
} else {
<h4>This is the default footer</h4>
}
@RenderSection("scripts", false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment