nativegallery-weryskok/views/pages/Main.php

182 lines
5.7 KiB
PHP
Raw Normal View History

2024-07-05 12:04:07 +03:00
<?php
use App\Services\{DB, Auth, Date, Json};
use App\Models\{User, Vote, Comment};
?>
2024-07-04 12:36:23 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
2024-07-05 12:04:07 +03:00
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/LoadHead.php'); ?>
2024-07-04 12:36:23 +03:00
2024-07-05 12:04:07 +03:00
</head>
2024-07-04 12:36:23 +03:00
2024-07-05 12:04:07 +03:00
<style>
.ix-country {
padding-top: 3px;
white-space: nowrap;
font-family: var(--narrow-font);
font-size: 18px;
}
.ix-country>a>b {
border-bottom: dotted 1px;
}
.ix-cities {
padding: 5px 0 15px 15px;
}
.ix-arrow {
display: inline-block;
width: 9px;
height: 9px;
background: url("/img/arrow_blue.png") no-repeat;
transition: transform .1s ease-out;
position: relative;
top: -1px;
}
.ix-arrow.ix-arrow-expanded {
transform: rotate(90deg);
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FSVJTB6RNR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-FSVJTB6RNR');
</script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function(m, e, t, r, i, k, a) {
m[i] = m[i] || function() {
(m[i].a = m[i].a || []).push(arguments)
};
m[i].l = 1 * new Date();
for (var j = 0; j < document.scripts.length; j++) {
if (document.scripts[j].src === r) {
return;
2024-07-04 12:36:23 +03:00
}
2024-07-05 12:04:07 +03:00
}
k = e.createElement(t), a = e.getElementsByTagName(t)[0], k.async = 1, k.src = r, a.parentNode.insertBefore(k, a)
})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(73971775, "init", {
clickmap: true,
trackLinks: true,
accurateTrackBounce: true
});
</script>
<noscript>
<div><img src="https://mc.yandex.ru/watch/73971775" style="position:absolute; left:-9999px;" alt="" /></div>
</noscript>
<!-- /Yandex.Metrika counter -->
<!-- Yandex.RTB -->
<script>
window.yaContextCb = window.yaContextCb || []
</script>
<script src="https://yandex.ru/ads/system/context.js" async></script>
2024-07-04 12:36:23 +03:00
</head>
<body>
<div id="backgr"></div>
<table class="tmain">
2024-07-05 12:04:07 +03:00
<?php include($_SERVER['DOCUMENT_ROOT'] . '/views/components/Navbar.php'); ?>
2024-07-04 12:36:23 +03:00
<tr>
<td class="main">
<table id="idx-main">
<tr>
2024-07-06 10:33:33 +03:00
2024-07-04 12:36:23 +03:00
<td style="vertical-align:top; padding-right:20px">
2024-07-06 10:33:33 +03:00
<h4><a href="top30.php">Самые популярные за 24 часа</a></h4>
<div>
Когда-нибудь, этот раздел появится :)
</div>
<div style="text-align:center; margin-bottom:20px">
<div style="width: 250px;"></div></div>
2024-07-04 12:36:23 +03:00
2024-07-06 10:33:33 +03:00
</td>
2024-07-04 12:36:23 +03:00
<td style="vertical-align:top; width:100%; padding-top:4px">
<div id="morerand">
<a id="newrand" style="display:none" href="#">Показать другие</a>
<span id="newrand-loader" style="color:#888">Загрузка...</span>
</div>
<h4><a href="/photo/" target="_blank">Случайные фотографии</a></h4>
2024-07-05 12:04:07 +03:00
<div id="random-photos" class="ix-photos ix-photos-oneline">
<?php
$photos = DB::query('SELECT * FROM photos ORDER BY RAND() DESC LIMIT 7');
foreach ($photos as $p) {
$bck = 'background-image:url("' . $p['photourl'] . '")';
echo ' <div class="prw-grid-item">
<div class="prw-wrapper"><span style="word-spacing:-1px"><b>' . $p['place'] . '</b></span>
<div>' . Date::zmdate($p['posted_at']) . '</div>
</div>
'; ?>
<a href="/photo/<?= $p['id'] ?>" target="_blank" class="prw-animate" style='background-image:url("<?= $p['photourl'] ?>")'></a>
<?php echo '
</div>';
}
?>
2024-07-04 12:36:23 +03:00
</div>
<br>
<h4 style="clear:both"><a href="/update.php?time=72">Недавно добавленные фотографии</a></h4>
2024-07-05 12:04:07 +03:00
<div id="recent-photos" class="ix-photos ix-photos-multiline" lastpid="1970527" firstpid="1970550">
<?php
2024-07-06 10:28:50 +03:00
$photos = DB::query('SELECT * FROM photos ORDER BY id DESC LIMIT 30');
2024-07-05 12:04:07 +03:00
foreach ($photos as $p) {
$bck = 'background-image:url("' . $p['photourl'] . '")';
echo ' <div class="prw-grid-item">
<div class="prw-wrapper"><span style="word-spacing:-1px"><b>' . $p['place'] . '</b></span>
<div>' . Date::zmdate($p['posted_at']) . '</div>
2024-07-04 12:36:23 +03:00
</div>
2024-07-05 12:04:07 +03:00
'; ?>
<a href="/photo/<?= $p['id'] ?>" target="_blank" class="prw-animate" style='background-image:url("<?= $p['photourl'] ?>")'></a>
</div>';
<?php }
?>
2024-07-04 12:36:23 +03:00
2024-07-05 12:04:07 +03:00
</div>
2024-07-04 12:36:23 +03:00
</td>
</tr>
</table>
</td>
</tr>
</table>
2024-07-05 12:04:07 +03:00
2024-07-04 12:36:23 +03:00
</body>
</html>