2011-12-01 06:04:44 +01:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2011-12-09 05:57:23 +01:00
|
|
|
@using NzbDrone.Web.Helpers
|
2012-02-10 08:37:31 +01:00
|
|
|
|
2011-12-01 06:04:44 +01:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head runat="server">
|
|
|
|
<link rel="SHORTCUT ICON" href="../../favicon.ico" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2011-12-13 07:08:55 +01:00
|
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
|
2011-12-09 05:57:23 +01:00
|
|
|
@Html.IncludeCss("jQueryUI/jquery-ui-1.8.16.custom.css")
|
|
|
|
@Html.IncludeCss("jquery.gritter.css")
|
|
|
|
@Html.IncludeCss("NzbDrone.css")
|
|
|
|
@Html.IncludeCss("ActionButton.css")
|
|
|
|
@Html.IncludeCss("Menu.css")
|
|
|
|
@Html.IncludeCss("Messages.css")
|
2012-02-08 09:17:40 +01:00
|
|
|
@Html.IncludeCss("DataTables-1.9.0/media/css/jquery.dataTables.css")
|
2012-02-11 01:48:20 +01:00
|
|
|
@Html.IncludeCss("overrides.css")
|
2011-12-01 06:04:44 +01:00
|
|
|
@RenderSection("HeaderContent", required: false)
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@RenderBody()
|
2012-02-10 08:37:31 +01:00
|
|
|
@Html.IncludeScript("jquery-1.7.1.min.js")
|
2011-12-09 05:57:23 +01:00
|
|
|
@Html.IncludeScript("jquery-ui-1.8.16.min.js")
|
|
|
|
@Html.IncludeScript("jquery.livequery.js")
|
|
|
|
@Html.IncludeScript("MicrosoftAjax.js")
|
|
|
|
@Html.IncludeScript("MicrosoftMvcAjax.js")
|
|
|
|
@Html.IncludeScript("jquery.gritter.js")
|
|
|
|
@Html.IncludeScript("jquery.form.js")
|
|
|
|
@Html.IncludeScript("jquery-tgc-countdown-1.0.js")
|
|
|
|
@Html.IncludeScript("jquery.watermark.min.js")
|
|
|
|
@Html.IncludeScript("jquery.hotkeys.js")
|
|
|
|
@Html.IncludeScript("doTimeout.js")
|
2011-12-16 08:18:54 +01:00
|
|
|
@Html.IncludeScript("NzbDrone/localSearch.js")
|
2011-12-09 05:57:23 +01:00
|
|
|
@Html.IncludeScript("NzbDrone/AutoComplete.js")
|
|
|
|
@Html.IncludeScript("NzbDrone/Notification.js")
|
|
|
|
@Html.IncludeScript("NzbDrone/AutoBind.js")
|
2012-01-30 02:38:44 +01:00
|
|
|
@Html.IncludeScript("NzbDrone/grid.js")
|
2012-02-10 08:37:31 +01:00
|
|
|
@Html.IncludeScript("DataTables-1.9.0/media/js/jquery.dataTables.min.js")
|
2012-02-10 06:26:30 +01:00
|
|
|
@Html.IncludeScript("DataTables-1.9.0/media/js/jquery.dataTables.editable.js")
|
|
|
|
@Html.IncludeScript("DataTables-1.9.0/media/js/jquery.jeditable.js")
|
|
|
|
@Html.IncludeScript("DataTables-1.9.0/media/js/jquery.validate.js")
|
2012-02-08 09:17:40 +01:00
|
|
|
@Html.IncludeScript("jquery.dataTables.4button.pagination.js")
|
2011-12-01 06:04:44 +01:00
|
|
|
@RenderSection("Scripts", required: false)
|
|
|
|
</body>
|
2012-01-30 02:38:44 +01:00
|
|
|
</html>
|