59 lines
2.3 KiB
PHP
59 lines
2.3 KiB
PHP
<div id="pageSmoothBackground" style="background-image: url(<?= $randomPoint->getImg('middle') ?>);"></div>
|
|
|
|
<div class="container" style="background-color: rgba(255,255,255, 0.8);margin-top: -10px;padding-bottom: 30px;">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h1 style="text-align: right;">Списки точек по категориям</h1>
|
|
<div class="coords-container">
|
|
Вернуться <a href="/">на карту</a>.
|
|
</div>
|
|
<div style="text-align: justify;">
|
|
<?php if ($notModeratedPoints): ?>
|
|
<h3>Точки на модерации</h3>
|
|
<?php foreach ($notModeratedPoints as $point): ?>
|
|
#<?= $point['id'] ?> <img src="/ico/lock.png" />
|
|
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
|
|
<img src="<?= $point['categoryIcon'] ?>" /> <a href="/point/<?= $point['id'] ?>"><?= $point['name'] ?></a>
|
|
<?= $point['author'] ?>
|
|
<br/>
|
|
<?php endforeach; ?>
|
|
<hr/>
|
|
<?php endif; ?>
|
|
|
|
<h3>Выбор типа точки</h3>
|
|
<?php
|
|
foreach ($categories as $category) {
|
|
print "<a href='/page/points/category/$category->id'>";
|
|
print "<img src='$category->icon' title='$category->name' />";
|
|
print "</a>";
|
|
}
|
|
?>
|
|
<?php
|
|
$header = 'Неполный список точек (100 недавно добавленных)';
|
|
if ((int) App::getParam('category')) {
|
|
$header = 'Список точек в категории "' . $categories[(int) App::getParam('category')]->name . '"';
|
|
}
|
|
?>
|
|
<h3><?= $header ?></h3>
|
|
|
|
<?php foreach ($points as $point): ?>
|
|
#<?= $point['id'] ?> <img src="<?= $point['categoryIcon'] ?>" /> <a href="/point/<?= $point['id'] ?>"><?= $point['name'] ?></a>
|
|
<?= $point['author'] ?>
|
|
<br/>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<a href="/point/<?= $randomPoint->id ?>" style="float: left; margin: 0 20px 0 0;"><img src="<?= $randomPoint->getImg() ?>" style="width: 200px;"/></a>
|
|
<h3 style="margin-top: 0;">Это интересно: <?= $randomPoint->name ?></h3>
|
|
<p>
|
|
<?= mb_substr($randomPoint->description, 0, 400, 'UTF-8') ?>…
|
|
<a class="" href="/point/<?= $randomPoint->id ?>" role="button"><nobr> читать далее »</nobr></a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|