mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Charset and meta in index.html and login.html (#1926)
This commit is contained in:
parent
9db46ba154
commit
d9da32173f
@ -1,37 +1,33 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Radarr</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<meta name="mobile-web-app-capable" content="yes"/>
|
||||
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
||||
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
||||
|
||||
<link href="/Content/bootstrap.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/bootstrap.toggle-switch.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/messenger.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/messenger.flat.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/fullcalendar.css" rel='stylesheet' type='text/css'>
|
||||
<link href="/Content/theme.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/cells.css" rel='stylesheet' type='text/css'>
|
||||
<link href="/Content/series.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/movies.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/activity.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/logs.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/settings.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/addSeries.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/addMovies.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/calendar.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/update.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/overrides.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/info.css" rel='stylesheet' type='text/css'/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#272727"/>
|
||||
<!-- Piwik -->
|
||||
<meta name="msapplication-navbutton-color" content="#272727">
|
||||
|
||||
<!-- End Piwik Code -->
|
||||
<link href="/Content/bootstrap.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/bootstrap.toggle-switch.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/messenger.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/messenger.flat.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/fullcalendar.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/theme.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/cells.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/series.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/movies.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/activity.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/logs.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/settings.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/addSeries.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/addMovies.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/calendar.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/update.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/overrides.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/info.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- Generated by http://realfavicongenerator.net/ -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/Content/Images/favicon/apple-touch-icon.png">
|
||||
@ -49,7 +45,7 @@
|
||||
<meta name="msapplication-config" content="/Content/Images/favicon/browserconfig.xml">
|
||||
<meta name="theme-color" content="#272727">
|
||||
|
||||
<link rel="alternate" type="text/calendar" title="iCalendar feed for Radarr" href="/feed/calendar/Radarr.ics"/>
|
||||
<link rel="alternate" type="text/calendar" title="iCalendar feed for Radarr" href="/feed/calendar/Radarr.ics">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
@ -1,17 +1,17 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Radarr - Login</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
||||
|
||||
<link href="/Content/bootstrap.css" rel='stylesheet' type='text/css'/>
|
||||
<link href="/Content/theme.css" rel='stylesheet' type='text/css'/>
|
||||
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#272727"/>
|
||||
<meta name="msapplication-navbutton-color" content="#272727">
|
||||
|
||||
<link href="/Content/bootstrap.css" rel="stylesheet" type="text/css">
|
||||
<link href="/Content/theme.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- Generated by http://realfavicongenerator.net/ -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/Content/Images/favicon/apple-touch-icon.png">
|
||||
|
Loading…
Reference in New Issue
Block a user