There I have the following: <!-- Your Favoriate Icons --> <link rel="shortcut icon" href="ico/favicon.ico"> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="ico/apple-touch-icon-144-precomposed.png">
I have changes this to: <!-- Your Favoriate Icons --> <?php echo \Theme::instance()->asset->css(array('../ico/favicon.ico'), array('rel' => 'shortcut icon'), NULL, false); ?> <?php echo \Theme::instance()->asset->css(array('../ico/apple-touch-icon-144-precomposed.png'), array('rel' => 'apple-touch-icon-precomposed', 'sizes' => '144x144'), NULL, false); ?>
The favicon is working with that correctly, but the PNG is trowing an error: Fuel\Core\FuelException [ Error ]: Could not find asset: ../ico/apple-touch-icon-144-precomposed.png
Both Icons are in the same directory: \public\themes\peach\ico
What is the correct way to integrate something like that?