blob: c9f8735fa4f371a5b467acab05d23f6ee741527c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<article class="resource-object">
<header class="resource-header">
<h2><?= htmlReady($location->name) ?></h2>
</header>
<section class="resource-details">
<img class="resource-picture" src="<?= $building->getImageUrl() ?>">
<p><?= htmlReady($location->description) ?></p>
<dl>
<dt><?= _('Adresse') ?></dt>
<dd><?= htmlReady($location->getAddress()) ?>
<a href="<?= ResourceManager::getMapUrlForResourcePosition(
$location->geo_coordinates
) ?>">
<?= Icon::create('place')->asImg(16) ?>
</a>
</dd>
</dl>
</section>
</article>
|