Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/b97e8d5cf7e16a11152ae1c2df76537887adff02/PlexRequests.UI/Views/Shared/_Layout.cshtml You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/PlexRequests.UI/Views/Shared/_Layout.cshtml

27 lines
592 B

@using PlexRequests.UI.Helpers
@*@using StackExchange.Profiling*@
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase
<html>
@Html.Partial("Shared/Partial/_Head")
<body>
@Html.Partial("Shared/Partial/_Navbar")
<div class="container" style="padding-top: 5%">
@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>
@Html.GetInformationalVersion()
</html>
@Html.Partial("Shared/Partial/_LayoutScripts")