stores/index.php
Listado de tiendas físicas y puntos de venta / Tiendas con ubicación sobre mapa
Listado de tiendas
Código de ejemplo
<div class="container">
<div id="stores">
<h1>Store finder</h1>
<ul>
<?php while($_store->getNext()): ?>
<li>
<h2><?=$_store->get('city')?></h2>
<h3><?=$_store->get('name')?></h3>
<p><?=$_store->get('address')?>
<?php if($_store->get('tel')): ?>
<br />Tel: <?=$_store->get('tel')?>
<?php endif; ?>
</p>
</li>
<?php endwhile; ?>
</ul>
</div>
</div>Last updated
Was this helpful?