You will probably have to:
<a href="#">{{ HTML::image("img/logo.png", "Logo") }}</a>
Because link () uses entities to exit the header:
public function link($url, $title = null, $attributes = array(), $secure = null) { $url = $this->url->to($url, array(), $secure); if (is_null($title) or $title === false) $title = $url; return '<a href="'.$url.'"'.$this->attributes($attributes).'>'.$this->entities($title).'</a>'; }
Creating this source code:
"<a href="
source share