docs: add full set of "favicon" files to support modern clients
Use of the relation "shortcut" for a favicon was an Internet Explorer only feature. Other browsers just require "icon". The new icons & metadata are generated using https://realfavicongenerator.net/ which is user tested to work well across all modern clients Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
BIN
docs/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
docs/android-chrome-256x256.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
docs/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 10 KiB |
9
docs/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/mstile-150x150.png"/>
|
||||||
|
<TileColor>#b91d47</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
BIN
docs/favicon-16x16.png
Normal file
After Width: | Height: | Size: 872 B |
BIN
docs/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
docs/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
18
docs/manifest.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"name": "Libvirt",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-256x256.png",
|
||||||
|
"sizes": "256x256",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
BIN
docs/mstile-150x150.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
@ -89,7 +89,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8"/>
|
<meta charset="UTF-8"/>
|
||||||
<link rel="stylesheet" type="text/css" href="{$href_base}main.css"/>
|
<link rel="stylesheet" type="text/css" href="{$href_base}main.css"/>
|
||||||
<link rel="SHORTCUT ICON" href="{$href_base}32favicon.png"/>
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/>
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
|
||||||
|
<link rel="manifest" href="/manifest.json"/>
|
||||||
|
<meta name="theme-color" content="#ffffff"/>
|
||||||
<title>libvirt: <xsl:value-of select="html:html/html:body/html:h1"/></title>
|
<title>libvirt: <xsl:value-of select="html:html/html:body/html:h1"/></title>
|
||||||
<meta name="description" content="libvirt, virtualization, virtualization API"/>
|
<meta name="description" content="libvirt, virtualization, virtualization API"/>
|
||||||
<xsl:apply-templates select="/html:html/html:head/*" mode="content"/>
|
<xsl:apply-templates select="/html:html/html:head/*" mode="content"/>
|
||||||
|