You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/Old/Ombi.UI/Views/Shared/_Layout.cshtml

25 lines
556 B

8 years ago
@*@using StackExchange.Profiling*@
@using Ombi.UI.Helpers
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase
<html id="htmlId">
8 years ago
@Html.Partial("Shared/Partial/_Head")
8 years ago
<body>
8 years ago
@Html.Partial("Shared/Partial/_Navbar")
8 years ago
<div class="container" style="padding-top: 5%">
8 years ago
@RenderBody()
</div>
<div class="scroll-top-wrapper ">
<span class="scroll-top-inner">
<i class="fa fa-2x fa-arrow-circle-up"></i>
</span>
</div>
</body>
8 years ago
@Html.GetInformationalVersion()
8 years ago
</html>
@Html.Partial("Shared/Partial/_LayoutScripts")