Просмотр файла modules/pages/not_found.php

Размер файла: 514B
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.pp.ua *
  7. **********************************/
  8. $locate = 'in_site';
  9. $title = $lang->word('page_not_found');
  10. require_once(SYS.'/view/header.php');
  11. $tpl->div('title', $lang->word('page_not_found'));
  12. $tpl->div('menu', $lang->word('page_not_found_alert'));
  13. $tpl->div('block', HICO .'<a href="/">'. $lang->word('home').'</a>');
  14. require_once(SYS.'/view/footer.php');
  15. ?>