Reputation: 363
I need to generate the following html tag with cakephp 2.3 Please give any help to generate it. There is an image which I have place in img
folder it comes as href attribute value.
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144-precomposed.png">
I try with different of option with meta but I can not resolve the image path issue.
Upvotes: 0
Views: 1419
Reputation: 748
echo $this->Html->meta(array(
'rel' => 'apple-touch-icon-precomposed',
'sizes' => '144x144',
'link' => '/img/apple-touch-icon-144-precomposed.png',
));
Upvotes: 4
Reputation: 2968
You can build any Html tags by HtmlHelper::tag
: http://book.cakephp.org/2.0/en/core-libraries/helpers/html.html#HtmlHelper::tag
Upvotes: 0