Created
December 3, 2015 22:21
-
-
Save samueleresca/ca0fcffce4bc99f93d8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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