blob: 9ab869596b49a22636467b1b1ed6c7d1c18ad05f (
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') ?>
</a>
</dd>
</dl>
</section>
</article>
|