You are here

photos_default.tpl.php in Album Photos 6.2

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

File

tpl/photos_default.tpl.php
View source
<div id="photos_default">
  <?php

if ($content['user']['image']) {
  ?>
    <h2><?php

  print t('My latest images');
  ?></h2>
    <?php

  print $content['user']['image'];
  ?>
  <?php

}
?>
  <?php

if ($content['user']['album']) {
  ?>
    <h2><?php

  print t('My latest albums');
  ?></h2>
    <?php

  print $content['user']['album'];
  ?>
  <?php

}
?>
  <?php

if ($content['site']['image']) {
  ?>
    <h2><?php

  print t('Latest images');
  ?></h2>
    <?php

  print $content['site']['image'];
  ?>
  <?php

}
?>
  <?php

if ($content['site']['album']) {
  ?>
    <h2><?php

  print t('Latest albums');
  ?></h2>
    <?php

  print $content['site']['album'];
  ?>
  <?php

}
?>
</div>