You are here

photos_albumlist.tpl.php in Album Photos 6.2

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

File

tpl/photos_albumlist.tpl.php
View source
<div class="photos-album">
	<?php

if ($node->album['url']) {
  print '<div class="album-left"><img src="' . $node->album['url'] . '"></div><div class="album-right">';
}
?>
	<h2><?php

print $node->titlelink;
?></h2>
	<div class="photos-meta"><?php

print theme('username', $node);
?><span class="photos-time"><?php

print t('Published in ') . $node->time;
?></span><span class="photos-imgnum"></span><?php

print t('A total of %num images', array(
  '%num' => $node->album['count'],
));
?></div>
	<?php

print $node->teaser;
?>
	<?php

if ($node->album['url']) {
  print '</div>';
}
?>
	<div class="photos-editmenu"><?php

print $node->albumlink;
?></div>
</div>