Lidarr/NzbDrone.Web/Views/Shared/Site.Master

72 lines
2.4 KiB
Plaintext
Raw Normal View History

2010-10-10 19:00:07 +00:00
<!--
2010-10-02 19:01:43 +00:00
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
2010-09-23 03:19:47 +00:00
2010-10-02 19:01:43 +00:00
Name : Concurrence
Description: A two-column, fixed-width design for 1024x768 screen resolutions.
Version : 1.0
Released : 20100727
-->
2010-10-10 19:00:07 +00:00
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<%@ Import Namespace="Helpers" %>
<%@ Import Namespace="Telerik.Web.Mvc.UI" %>
<!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" xml:lang="en" lang="en">
2010-10-02 19:01:43 +00:00
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
2010-10-24 17:35:58 +00:00
<asp:ContentPlaceHolder runat="server" ID="Scripts" />
2010-10-10 19:00:07 +00:00
<title>NZBDrone</title>
2010-10-02 19:01:43 +00:00
<%
2010-10-12 02:49:27 +00:00
Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.css")
.Add("telerik.sitefinity.css")
.Add("style.css")
2010-10-18 06:06:16 +00:00
.Add("notibar.css")).Render();
2010-10-02 19:01:43 +00:00
%>
</head>
<body>
<a href="http://github.com/kayone/NzbDrone">
<img style="position: absolute; top: 0; left: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png"
alt="Fork me on GitHub" />
</a>
2010-10-02 19:01:43 +00:00
<div id="header">
2010-10-18 06:06:16 +00:00
<div id="msgBox">
<span id="msgText">Scanning Series Folder...</span>
</div>
2010-10-02 19:01:43 +00:00
<div id="menu">
<ul>
<%=Html.CurrentActionLink("Series", "Index", "Series") %>
<%=Html.CurrentActionLink("Settings", "Index", "Settings") %>
<%=Html.CurrentActionLink("Logs", "Index", "Log") %>
2010-10-02 19:01:43 +00:00
</ul>
2010-09-23 03:19:47 +00:00
</div>
2010-10-02 19:01:43 +00:00
<!-- end #menu -->
</div>
<!-- end #header -->
<div id="logo">
<h1>
<asp:ContentPlaceHolder ID="TitleContent" runat="server" />
</h1>
</div>
<hr />
<!-- end #logo -->
<div id="page">
<asp:ContentPlaceHolder ID="ActionMenu" runat="server" />
2010-10-02 19:01:43 +00:00
<div id="content">
<div class="post">
<div class="entry">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
</div>
2010-09-23 03:19:47 +00:00
</div>
</div>
</div>
2010-10-12 02:49:27 +00:00
<% Html.Telerik().ScriptRegistrar().Scripts(
c => c.Add("jquery-ui-1.8.5.custom.min.js")
.Add("jquery.jgrowl.js")
.Add("Notification.js")
).Render(); %>
2010-09-23 03:19:47 +00:00
</body>
</html>