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

24 lines
505 B

8 years ago
@using PlexRequests.UI.Helpers
@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">
@RenderBody()
</div>
8 years ago
<div class="scroll-top-wrapper ">
<span class="scroll-top-inner">
<i class="fa fa-2x fa-arrow-circle-up"></i>
</span>
8 years ago
</div>
</body>
8 years ago
@Html.GetInformationalVersion()
8 years ago
</html>
@Html.Partial("Shared/Partial/_LayoutScripts")