youtubechannel.tpl.php in YoutubeChannel 6
File
themes/simple/youtubechannel.tpl.php
View source
<div id="youtubechannel-player">
<iframe id="youtubechannel-frame" title="Youtube Video Player" width="<?php
print $vars['width'];
?>" height="<?php
print $vars['height'];
?>" src="" frameborder="0" allowfullscreen></iframe>
<ul id="youtubechannel-list" style="width: <?php
print $vars['width'];
?>px; height: <?php
print $vars['height'] > 140 ? 140 : $vars['height'];
?>px;">
<?php
foreach ($vars['content'] as $key => $value) {
?>
<li>
<a href="#<?php
print $key;
?>"><?php
print $value['thumb'];
?></a>
<h3><?php
print $value['title'];
?></h3>
</li>
<?php
}
?>
</ul>
</div>