You are here

facebook_album_photos.tpl.php in Facebook Album 7.2

Same filename and directory in other branches
  1. 7.3 templates/facebook_album_photos.tpl.php

File

templates/facebook_album_photos.tpl.php
View source
<?php

foreach ($photos as $photo) {
  ?>
<div class="photo-wrapper">
  <a class="photo-thumb ''" target="_blank" title="" href="">
   <span class="photo-thumb-wrapper">
     <i data-photo-id="<?php

  print $photo['id'];
  ?>" style="width: <?php

  print $settings['photoThumbWidth'] . 'px';
  ?>; height:<?php

  print $settings['photoThumbHeight'] . 'px';
  ?>;"></i>
   </span>
  </a>
</div>
<?php

}