mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-22 22:23:36 -07:00
Update base.html
added iOS Icons exactly how iOS Human Interface Guidelines tells.
This commit is contained in:
parent
475e18c144
commit
d8d2832119
1 changed files with 40 additions and 5 deletions
|
@ -20,12 +20,47 @@ from plexpy import version
|
||||||
${next.headIncludes()}
|
${next.headIncludes()}
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="interfaces/default/images/favicon.ico"/>
|
<link rel="icon" type="image/x-icon" href="interfaces/default/images/favicon.ico"/>
|
||||||
<!-- touch icons -->
|
|
||||||
<link rel="shortcut icon" href="interfaces/default/images/favicon.png">
|
<link rel="shortcut icon" href="interfaces/default/images/favicon.png">
|
||||||
<link rel="apple-touch-icon" href="interfaces/default/images/icon_iphone.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="interfaces/default/images/icon_ipad.png">
|
<platform name="ios">
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="interfaces/default/images/icon_iphone@2x.png">
|
<!-- iOS 8.0+ -->
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="interfaces/default/images/icon_ipad@2x.png">
|
<!-- iPhone 6 Plus -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-60@3x.png" width="180" height="180" />
|
||||||
|
<!-- iOS 7.0+ -->
|
||||||
|
<!-- iPhone / iPod Touch -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-60.png" width="60" height="60" />
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-60@2x.png" width="120" height="120" />
|
||||||
|
<!-- iPad -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-76.png" width="76" height="76" />
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-76@2x.png" width="152" height="152" />
|
||||||
|
<!-- iOS 6.1 -->
|
||||||
|
<!-- Spotlight Icon -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-40.png" width="40" height="40" />
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-40@2x.png" width="80" height="80" />
|
||||||
|
<!-- iPhone / iPod Touch -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon.png" width="57" height="57" />
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon@2x.png" width="114" height="114" />
|
||||||
|
<!-- iPad -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-72.png" width="72" height="72" />
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-72@2x.png" width="144" height="144" />
|
||||||
|
<!-- iPhone Spotlight and Settings Icon -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-small.png" width="29" height="29" />
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-small@2x.png" width="58" height="58" />
|
||||||
|
<!-- iPad Spotlight and Settings Icon -->
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-50.png" width="50" height="50" />
|
||||||
|
<icon src="interfaces/default/images/res/ios/icon-50@2x.png" width="100" height="100" />
|
||||||
|
<!-- images are determined by width and height. The following are supported -->
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default~iphone.png" width="320" height="480"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default@2x~iphone.png" width="640" height="960"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-Portrait~ipad.png" width="768" height="1024"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-Portrait@2x~ipad.png" width="1536" height="2048"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-Landscape~ipad.png" width="1024" height="768"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-Landscape@2x~ipad.png" width="2048" height="1536"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-568h@2x~iphone.png" width="640" height="1136"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-667h.png" width="750" height="1334"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-736h.png" width="1242" height="2208"/>
|
||||||
|
<splash src="interfaces/default/images/res/screen/ios/Default-Landscape-736h.png" width="2208" height="1242"/>
|
||||||
|
</platform>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="content">
|
<body class="content">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue