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

70 lines
2.1 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>
2010-10-12 02:49:27 +00:00
<style type="text/css">
div.jGrowl-notification
{
margin-left: 6px;
}
</style>
2010-10-02 19:01:43 +00:00
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
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")
.Add("jquery.jgrowl.css")).Render();
2010-10-02 19:01:43 +00:00
%>
</head>
<body>
<div id="header">
<div id="menu">
<ul>
<%=Html.CurrentActionLink("Series", "Index", "Series") %>
<%=Html.CurrentActionLink("Settings", "Index", "Settings") %>
</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="ActionMenue" runat="server" />
<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-02 19:01:43 +00:00
<!-- end #footer -->
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>