| 1 |
<div class="photos-album">
|
| 2 |
<?php if($node->album['url']){
|
| 3 |
print '<div class="album-left"><img src="'.$node->album['url'].'"></div><div class="album-right">';
|
| 4 |
}?>
|
| 5 |
<h2><?php print $node->titlelink;?></h2>
|
| 6 |
<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>
|
| 7 |
<?php print $node->teaser;?>
|
| 8 |
<?php if($node->album['url']){ print '</div>';}?>
|
| 9 |
<div class="photos-editmenu"><?php print $node->albumlink;?></div>
|
| 10 |
</div>
|