<?php snippet('header') ?>

<!-- <div id="tiles">
    <?php foreach ($page->neighborhoods()->toStructure() as $neighborhood): ?>
        <a href="/neighborhoods/<?= urlencode($neighborhood->neighborhood()) ?>">
            <?= $neighborhood->neighborhood() ?>
        </a>
    <?php endforeach ?>
</div> -->

<?php $table = $page->map()->toTable(); ?>
<?php if($table != null): ?>
  <div id="map-container">
      <div id="map">
        <?php foreach ($table as $tableRow): ?>
            <?php foreach ($tableRow as $tableCell): ?>
                <?php if ($tableCell == ''): ?>
                    <a></a>
                <?php else: ?>
                    <a href="/neighborhoods/<?= urlencode($tableCell) ?>" class="filled"><?= $tableCell; ?></a>
                <?php endif ?>
            <?php endforeach; ?>
        <?php endforeach; ?>
      </div>
  </div>
<?php endif; ?>

<?php snippet('footer') ?>