Favicon
This commit is contained in:
parent
1bdf945a53
commit
0498beaca1
@ -28,6 +28,23 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
|
|||||||
->appendHttpEquiv('Content-Type', 'text/html; charset=UTF-8')
|
->appendHttpEquiv('Content-Type', 'text/html; charset=UTF-8')
|
||||||
->appendHttpEquiv('Content-Language', 'fr-FR');
|
->appendHttpEquiv('Content-Language', 'fr-FR');
|
||||||
|
|
||||||
|
//Favicon - Touch icon for iOS 2.0+ and Android 2.1+
|
||||||
|
$view->headLink()->headLink(array(
|
||||||
|
'rel' => 'apple-touch-icon-precomposed',
|
||||||
|
'href' => '/favicon-152.png'
|
||||||
|
));
|
||||||
|
//Favicon - targeted to any additional png size
|
||||||
|
$view->headLink()->headLink(array(
|
||||||
|
'rel' => 'icon',
|
||||||
|
'type' => 'image/png',
|
||||||
|
'href' => '/favicon-32.png'
|
||||||
|
));
|
||||||
|
$view->headLink()->headLink(array(
|
||||||
|
'rel' => 'shortcut icon',
|
||||||
|
'type' => 'image/x-icon',
|
||||||
|
'href' => '/favicon.ico')
|
||||||
|
);
|
||||||
|
|
||||||
$view->headLink()
|
$view->headLink()
|
||||||
->appendStylesheet('/libs/bootstrap-v3.0.3/css/bootstrap.min.css', 'all')
|
->appendStylesheet('/libs/bootstrap-v3.0.3/css/bootstrap.min.css', 'all')
|
||||||
->appendStylesheet('/themes/default/css/docs.css', 'all')
|
->appendStylesheet('/themes/default/css/docs.css', 'all')
|
||||||
|
BIN
public/favicon-152.png
Normal file
BIN
public/favicon-152.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
public/favicon-32.png
Normal file
BIN
public/favicon-32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
Loading…
Reference in New Issue
Block a user