Подскажите видео урок по созданию шаблона на русском языке(ну и если таких нет то на анг), меня больше интересует php в шаблонах, различные условия ширины, прикреплении скриптов, и тд...
пример что хотелось бы увидеть в уроках:
PHP
Код:
<?php
$n=0;
if ($this->countModules('user1')) $n+=1;
if ($this->countModules('user2')) $n+=1;
if ($this->countModules('user3')) $n+=1;
?>
<div class="width<?php echo $n ?>"><jdoc:include type="modules" name="user1" style="raw" /></div>
<div class="width<?php echo $n ?>"><jdoc:include type="modules" name="user2" style="raw" /></div>
<div class="width<?php echo $n ?>"><jdoc:include type="modules" name="user3" style="raw" /></div>
CSS
Код:
.width1{width:100%}
.width2{width:50%}
.width3{width:33%}
Спасибо.