locations.tpl.php 326 B

12345678
  1. <?php if (!empty($locations)): ?>
  2. <h3 class="location-locations-header"><?php print format_plural(count($locations), 'Location', 'Locations'); ?></h3>
  3. <div class="location-locations-wrapper">
  4. <?php foreach ($locations as $location): ?>
  5. <?php print $location; ?>
  6. <?php endforeach; ?>
  7. </div>
  8. <?php endif; ?>