Newer
Older
ccjcorea / themes / default / geolocation / map / browse.php
@Omeka Users Omeka Users on 10 Jul 2018 774 bytes Ajout de la geolocation
<?php 
queue_css_file('geolocation-items-map');

$title = __('Browse Items on the Map') . ' ' . __('(%s total)', $totalItems);
echo head(array('title' => $title, 'bodyclass' => 'map browse'));
?>
<div class="breadcrumb"><a href="/"><?php echo __('Home'); ?></a>&nbsp;&raquo;&nbsp;Carte </div>
<h1><?php echo $title; ?></h1>



<?php
echo item_search_filters();
echo pagination_links();
?>

<div id="geolocation-browse">
    <?php echo $this->googleMap('map_browse', array('list' => 'map-links', 'params' => $params)); ?>
    <div id="map-links"><h2><?php echo __('Find An Item on the Map'); ?></h2></div>
</div>
<div id="search_block">
    <?php echo items_search_form(array('id'=>'search'), $_SERVER['REQUEST_URI']); ?>
</div><!-- end search_block -->
<?php echo foot(); ?>