44 lines
1.6 KiB
PHP
44 lines
1.6 KiB
PHP
<div id="pageSmoothBackground" style="background-image: url(<?= current($points)->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="" style="text-align: center; padding-top: 10px;">
|
|
<a href="/"><img src="/img/logo.png" title="WIKIPOINTS.RU" style="height: 100px;" /></a>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-2">
|
|
<h2>Новости</h2>
|
|
<?php foreach ($news as $item) : ?>
|
|
<div style="margin: 3px; padding: 3px; border: solid 1px #999;">
|
|
<h4><?= $item->title ?></h4>
|
|
<?= mb_substr($item->text, 0, 400, 'UTF-8') ?>…
|
|
</div>
|
|
<?php endforeach;?>
|
|
</div>
|
|
<div class="col-md-5">
|
|
<h2>Точки</h2>
|
|
<?php foreach ($points as $item) : ?>
|
|
<div style="margin: 3px; padding: 3px; border: solid 1px #999;">
|
|
<h4><?= $item->name ?></h4>
|
|
<img src="<?= $item->getImg() ?>" style="width: 200px; margin: 0 10px 5px 0;"/><br/>
|
|
<?= mb_substr($item->description, 0, 400, 'UTF-8') ?>…
|
|
</div>
|
|
<?php endforeach;?>
|
|
</div>
|
|
<div class="col-md-5">
|
|
<h2>Статьи</h2>
|
|
<?php foreach ($articles as $item) : ?>
|
|
<div style="margin: 3px; padding: 3px; border: solid 1px #999;">
|
|
<h4><?= $item->title ?></h4>
|
|
<img src="<?= $item->getImg() ?>" style="width: 200px; float: left; margin: 0 10px 5px 0;"/>
|
|
<?= mb_substr($item->text, 0, 400, 'UTF-8') ?>…
|
|
<div style="clear: both;"></div>
|
|
</div>
|
|
<?php endforeach;?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
body div.header {display: none;}
|
|
</style>
|