11 lines
405 B
PHTML
11 lines
405 B
PHTML
<?php
|
|
$config = Zend_Registry::get('config');
|
|
$this->headTitle($config->title->site);
|
|
$this->headTitle($config->title->review);
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/news.css');
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
$this->breadcrumb('<a href="/">Home</a>');
|
|
$this->breadcrumb('News');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?> |