aboutsummaryrefslogtreecommitdiff
path: root/views/default/entities/gallery_listing.php
blob: 58fa5e26b55b513e45054d6943a492d414c4370f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Generic display for a single entity in gallery view.
 *
 * @package Elgg
 * @subpackage Core
 *
 * @uses string $vars['icon'] Full icon HTML to display.
 * @uses string $vars['info'] Info about the entity.
 */

?>

<div class="gallery_listing clearfix">
	<div class="gallery_listing_icon">
		<?php echo $vars['icon']; ?>
	</div>
	<div class="gallery_listing_info">
		<?php echo $vars['info']; ?>
	</div>
</div>