diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-05-01 04:04:44 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-05-01 04:04:44 +0000 |
commit | 521dad5267d98fc7776d75b3f44dc65ab500568d (patch) | |
tree | ee985aa394d9f448f2910a93a892272b2b176e36 /views/default/tidypics/gallery.php | |
parent | 6e330270c7c8a9edd4c57b258c6ff0920c7fed1c (diff) | |
download | elgg-521dad5267d98fc7776d75b3f44dc65ab500568d.tar.gz elgg-521dad5267d98fc7776d75b3f44dc65ab500568d.tar.bz2 |
better layout of photo album covers
Diffstat (limited to 'views/default/tidypics/gallery.php')
-rw-r--r-- | views/default/tidypics/gallery.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/views/default/tidypics/gallery.php b/views/default/tidypics/gallery.php index b9a50bdab..74aa34500 100644 --- a/views/default/tidypics/gallery.php +++ b/views/default/tidypics/gallery.php @@ -4,6 +4,9 @@ * */ +// four albums across +$num_wide = 4; + $context = $vars['context']; $offset = $vars['offset']; $entities = $vars['entities']; @@ -43,9 +46,15 @@ if ($pagination) { } $html .= $nav; + if (is_array($entities) && sizeof($entities) > 0) { + $counter = 0; foreach($entities as $entity) { + if ($counter % $num_wide == 0) { + $html .= "<div class=\"tidypics_line_break\"></div>"; + } $html .= elgg_view_entity($entity, $fullview); + $counter++; } } |