PHP Classes

File: templates/_galleries.php

Recommend this page to a friend!
  Classes of Matías Gentiletti   Picasa Photo Gallery   templates/_galleries.php   Download  
File: templates/_galleries.php
Role: Application script
Content type: text/plain
Description: Partial Galleries
Class: Picasa Photo Gallery
Extract data picture galleries from Picasa site
Author: By
Last change:
Date: 16 years ago
Size: 469 bytes
 

Contents

Class file image Download
<div id="galleries">
  <?php foreach ($galleries as $item): ?>
<div class="content_gallery">
    <div class="block_image"><a href="<?php echo $item['url'] ?>"><img class="photo_cover" src="<?php echo $item['image'] ?>" alt="<?php echo utf8_decode($item['title']) ?>" /></a></div>
    <div><strong><?php echo utf8_decode($item['title']) ?></strong> (<?php echo $item['number'] ?>)</div>
    <div><?php echo $item['date'] ?></div>
  </div>
  <?php endforeach; ?>
</div>