mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Added favicon and also structured the HTML correctly
This commit is contained in:
parent
d1827cd3be
commit
d0469ecf84
4 changed files with 56 additions and 47 deletions
BIN
PlexRequests.UI/Content/favicon.ico
Normal file
BIN
PlexRequests.UI/Content/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 361 KiB |
|
@ -153,6 +153,9 @@
|
|||
<Content Include="Content\bootstrap.min.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Content\favicon.ico">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Content\font-awesome.css">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
@ -174,7 +177,6 @@
|
|||
<Content Include="Content\site.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="icon.png" />
|
||||
<None Include="app.config" />
|
||||
<Content Include="packages.config" />
|
||||
<None Include="sqlite3.dll">
|
||||
|
|
|
@ -1,54 +1,61 @@
|
|||
@using Nancy.Security
|
||||
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase
|
||||
<html>
|
||||
<head>
|
||||
<title>Plex Requests</title>
|
||||
<!-- Styles -->
|
||||
<link rel="stylesheet" href="~/Content/custom.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="~/Content/bootstrap.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="~/Content/font-awesome.css" type="text/css"/>
|
||||
|
||||
<!-- Styles -->
|
||||
<link rel="stylesheet" href="~/Content/custom.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="~/Content/bootstrap.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="~/Content/font-awesome.css" type="text/css"/>
|
||||
<!-- Scripts -->
|
||||
<script src="/Content/jquery-2.2.1.min.js"></script>
|
||||
<script src="/Content/handlebars.js"></script>
|
||||
<script src="/Content/bootstrap.min.js"></script>
|
||||
<script src="/Content/bootstrap-notify.min.js"></script>
|
||||
<script src="/Content/site.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="/Content/jquery-2.2.1.min.js"></script>
|
||||
<script src="/Content/handlebars.js"></script>
|
||||
<script src="/Content/bootstrap.min.js"></script>
|
||||
<script src="/Content/bootstrap-notify.min.js"></script>
|
||||
<script src="/Content/site.js"></script>
|
||||
|
||||
<nav class="navbar navbar-default">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="#">Plex Requests</a>
|
||||
<nav class="navbar navbar-default">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="#">Plex Requests</a>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="active"><a href="/search">Search</a></li>
|
||||
@if (Context.CurrentUser.IsAuthenticated())
|
||||
{
|
||||
<li><a href="/admin">Admin</a></li>
|
||||
}
|
||||
<li><a href="/requests">Requests</a></li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
@if (!Context.CurrentUser.IsAuthenticated())
|
||||
{
|
||||
<li><a href="/login">Login</a></li>
|
||||
}
|
||||
else
|
||||
{
|
||||
<li><a href="/logout">Logout</a></li>
|
||||
}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="active"><a href="/search">Search</a></li>
|
||||
@if (Context.CurrentUser.IsAuthenticated())
|
||||
{
|
||||
<li><a href="/admin">Admin</a></li>
|
||||
}
|
||||
<li><a href="/requests">Requests</a></li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
@if (!Context.CurrentUser.IsAuthenticated())
|
||||
{
|
||||
<li><a href="/login">Login</a></li>
|
||||
}
|
||||
else
|
||||
{
|
||||
<li><a href="/logout">Logout</a></li>
|
||||
}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="container">
|
||||
@RenderBody()
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
@RenderBody()
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Before Width: | Height: | Size: 547 B |
Loading…
Add table
Add a link
Reference in a new issue