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/PlexRequests.UI/Views/Shared/_Layout.cshtml

27 lines
592 B

8 years ago
@using PlexRequests.UI.Helpers
@*@using StackExchange.Profiling*@
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase
<html>
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>
@*@MiniProfiler.RenderIncludes()*@
</body>
8 years ago
@Html.GetInformationalVersion()
8 years ago
</html>
@Html.Partial("Shared/Partial/_LayoutScripts")