adds font-awesome to css folder and
inserts the css into the html of the site
we will use font-awesome for most icons
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
IE11 is not supported with ExtJS 4, so we have to force the IE
rendering engine to parse the page as an older version.
This fixes the problem of the component tree icons not appearing.
IE11 is supported in ExtJS so this header is not needed in manager5/ (tested OK)
Closes https://bugzilla.proxmox.com/show_bug.cgi?id=645
The use of the HTML doctype is recommended for Ext4 and Ext5, and is supported by all
post 2008 browsers.
Basically it tells the browser to interpret the HTML according to standards, and not
according to what IE6 might have thought of it.
This will also drop support for IE6 and IE7, which are anyway not supported by ext5.
The HTML doctype will make all browsers switch to their standard
compliant mode, hence we don't need anymore to toggle this specifically for IE.
Signed-off-by: Emmanuel Kasper <e.kasper@proxmox.com>