Skip to content

Instantly share code, notes, and snippets.

@dshookowsky
Created April 10, 2014 14:06
Show Gist options
  • Save dshookowsky/10386008 to your computer and use it in GitHub Desktop.
Save dshookowsky/10386008 to your computer and use it in GitHub Desktop.
Views/Shared/_layout.cshtml
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
<link rel="stylesheet" type="text/css" href="~/Content/css/structure.css" />
<link rel="stylesheet" type="text/css" href="~/Style/Index" />
</head>
<body>
<div class="titlebar">
<span class="title">@ViewBag.Title</span>
</div>
<div>
@RenderBody()
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment