In what file in coffee template I can change <head>section fe.put some js code?
Could you recommend me any fb likebox plugin with Polish language?
<body>
<div class="bg">
<!--[if IE 6]>
<div id="gkInfobar"><a href="http://browsehappy.com">Internet Explorer 6 isn't supported by this website...</a></div>
<![endif]-->
<div id="gkPageTop" class="gkMain gkWrap clear">
<!-- <span>---</span> -->
<h1 class="gkLogo text">
<a href="#">Tekst</a>
<small class="gkLogoSlogan">Logo tekst</small>
</h1>
<span>---</span>
</div>
// No direct access.
defined('_JEXEC') or die;
$logo_image = $this->getParam('logo_image', '');
if(($logo_image == '') || ($this->getParam('logo_type', '') == 'css')) {
$logo_image = $this->URLtemplate() . '/images/logo.png';
} else {
$logo_image = $this->URLbase() . $logo_image;
}
?>
<?php if ($this->getParam('logo_type', 'image')!=='none'): ?>
<!-- <span>---</span> -->
<?php if($this->getParam('logo_type', 'image') == 'css') : ?>
<h1 id="gkLogo">
<a href="./" class="cssLogo"></a>
</h1>
<?php elseif($this->getParam('logo_type', 'image')=='text') : ?>
<h1 class="gkLogo text">
<a href="#"><?php echo $this->getParam('logo_text', ''); ?></a>
<small class="gkLogoSlogan"><?php echo $this->getParam('logo_slogan', ''); ?></small>
</h1>
<?php elseif($this->getParam('logo_type', 'image')=='image') : ?>
<h1 id="gkLogo">
<a href="./">
<img src="<?php echo $logo_image; ?>" alt="<?php echo $this->getPageName(); ?>" />
</a>
</h1>
<?php endif; ?>
<span>---</span>
<?php endif; ?>