You are here

youtubechannel.tpl.php in YoutubeChannel 6

File

themes/complex/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: 200>px; height: <?php

print $vars['height'];
?>px;">
      <?php

foreach ($vars['content'] as $key => $value) {
  ?>
      <li>
          <a href="#<?php

  print $key;
  ?>"><?php

  print $value['thumb'];
  ?>
          <span><?php

  print $value['title'];
  ?></span>
        	</a>
      </li>
      <?php

}
?>
    </ul>
    <div class="clear"></div>
</div>