Добрый вечер. джумла 3.4.8. Создал с нуля шаблон. Хотел подключить css с помощью php. Взял код со встроенного шаблона и скопировал к себе. Перехожу на страницу а css не подключается. У кого есть идеи почему? Подключаю через link в хеде все работает. Код (CODE): <?php defined('_JEXEC') or die; $app = JFactory::getApplication(); $doc = JFactory::getDocument(); $doc->addStyleSheet($this->baseurl . '/templates/' . $this->template . '/css/template.css'); ?> <!DOCTYPE html> <html> <head> <?php if($this->countModules('left and right') == 0) $contentwidth = "100"; if($this->countModules('left or right') == 1) $contentwidth = "80"; if($this->countModules('left and right') == 1) $contentwidth = "60"; ?> </head> <body id="wrap"> <div id="login"> </div> <div id="top"> <div id="logo"> </div> </div> <div id="menu"> </div> <div id="left"> </div> <div id="content"> </div> <div id="right"> </div> <div id="foot"> </div> </body> </html>