mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
|
|
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="page">
|
|
|
|
<div id="header">
|
|
<div id="title">
|
|
<h1>NZBDrone</h1>
|
|
</div>
|
|
|
|
<div id="logindisplay">
|
|
<% Html.RenderPartial("LogOnUserControl"); %>
|
|
</div>
|
|
|
|
<div id="menucontainer">
|
|
|
|
<ul id="menu">
|
|
<li><%: Html.ActionLink("Home", "Index", "Home")%></li>
|
|
<li><%: Html.ActionLink("Settings", "Index", "Settings")%></li>
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div id="main">
|
|
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
|
|
|
|
<div id="footer">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|