Advertisement
Guest User

Untitled

a guest
Jun 21st, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" >
  7. <title>@ViewBag.Title – приложение ASP.NET</title>
  8. @* <style>
  9. div.layout { background-color: lightblue; }
  10. div.view { border: 1px solid orange; margin: 10px 0; }
  11. </style>*@
  12. @Styles.Render("~/Content/css")
  13. @Scripts.Render("~/bundles/modernizr")
  14.  
  15. </head>
  16. <body>
  17. <div class="navbar navbar-inverse navbar-fixed-top">
  18. <div class="container">
  19. <div class="navbar-header">
  20. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  21. <span class="icon-bar"></span>
  22. <span class="icon-bar"></span>
  23. <span class="icon-bar"></span>
  24. </button>
  25. @Html.ActionLink("Управление ресурсами в ДИ", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
  26. </div>
  27. <div class="navbar-collapse collapse">
  28. <ul class="nav navbar-nav">
  29. @* <li>@Html.ActionLink("Домашняя страница", "Index", "Home")</li>*@
  30. <li>@Html.ActionLink("О программе", "About", "Home")</li>
  31. @* <li>@Html.ActionLink("Контакт", "Contact", "Home")</li>*@
  32. </ul>
  33. @Html.Partial("_LoginPartial")
  34. </div>
  35. </div>
  36. </div>
  37.  
  38. <div class="container body-content">
  39. @RenderSection("featured", required: false)
  40. <section class="content-wrapper main-content clear-fix">
  41. @RenderBody()
  42. </section>
  43. @* <hr />*@
  44. @*<footer>
  45. <p>&copy; @DateTime.Now.Year – приложение ASP.NET</p>
  46. </footer>*@
  47. </div>
  48. @Scripts.Render("~/bundles/jquery")
  49. <link href="~/Content/Site.css" rel="stylesheet" />
  50. @* @Scripts.Render("~/bundles/Site")*@
  51. @RenderSection("scripts", required: false)
  52. <script src="~/Scripts/jquery-ui-1.8.20.min.js"></script>
  53. <script src="~/Scripts/DataDisplayScript.js"></script>
  54. <script src="~/Scripts/Accordeon.js"></script>
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement