Skip to content

Instantly share code, notes, and snippets.

@rohitkandhal
Last active December 19, 2015 10:59
Show Gist options
  • Save rohitkandhal/5944252 to your computer and use it in GitHub Desktop.
Save rohitkandhal/5944252 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- other tags-->
@Styles.Render("~/Content/css", "~/Content/themes/base/css", "~/Content/bootstrap")
@Scripts.Render("~/bundles/modernizr")
<script src="@Url.Content("~/Scripts/jquery-1.9.1.min.js")" type="text/javascript"></script>
</head>
<body>
<div id="body">
@RenderSection("featured", required: false)
<section class="content-wrapper main-content clear-fix">
@RenderBody()
</section>
</div>
@Scripts.Render("~/bundles/jquery", "~/bundles/jqueryui", "~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment