mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 21:51:13 -07:00
23 lines
552 B
Text
23 lines
552 B
Text
@using Ombi.UI.Helpers
|
|
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase
|
|
<html ng-app="PlexRequests">
|
|
@Html.Partial("Shared/Partial/_Head")
|
|
|
|
<body>@Html.LoadAngularAssets()
|
|
|
|
@Html.Partial("Shared/Partial/_Navbar")
|
|
|
|
<div class="container">
|
|
@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>
|
|
|
|
@Html.GetInformationalVersion()
|
|
|
|
</html>
|
|
@Html.Partial("Shared/Partial/_LayoutScripts")
|