You are here

apps-install-page.tpl.php in Apps 7

File

theme/apps-install-page.tpl.php
View source
<?php

if (isset($content['featured_app'])) {
  ?>
  <?php

  print drupal_render($content['featured_app']);
}
if (isset($content['apps'])) {
  ?>
  <div id="apps-list" class="clearfix">
    <?php

  print drupal_render($content['apps']);
  ?>
  </div>
<?php

}
else {
  ?>
  <div class="messages"><?php

  print t('No applications currently available.');
  ?></div>
<?php

}