locations.tpl.php in Location 6.3
Same filename and directory in other branches
1 theme call to locations.tpl.php
File
locations.tpl.phpView source
<?php
if (!empty($locations)) {
?>
<h3 class="location-locations-header"><?php
print format_plural(count($locations), 'Location', 'Locations');
?></h3>
<div class="location-locations-wrapper">
<?php
foreach ($locations as $location) {
?>
<?php
print $location;
?>
<?php
}
?>
</div>
<?php
}