adasd
This commit is contained in:
@@ -7,7 +7,14 @@ $threadsForJs = [];
|
||||
try {
|
||||
$pdo = $app->pdo();
|
||||
if ($pdo) {
|
||||
$stmt = $pdo->prepare('SELECT id, title, teaser_public, description, city, region, zip, starts_at, allow_kids, visibility, location_label, lat, lng, created_at FROM events WHERE starts_at >= NOW() AND status != "cancelled" ORDER BY created_at DESC, starts_at ASC LIMIT 10');
|
||||
$stmt = $pdo->prepare('
|
||||
SELECT id, title, teaser_public, description, city, region, zip, starts_at, allow_kids, visibility, location_label, lat, lng, created_at
|
||||
FROM events
|
||||
WHERE starts_at >= DATE_SUB(NOW(), INTERVAL 120 DAY)
|
||||
AND status != "cancelled"
|
||||
ORDER BY starts_at ASC
|
||||
LIMIT 60
|
||||
');
|
||||
$stmt->execute();
|
||||
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC) ?: [];
|
||||
foreach ($rows as $r) {
|
||||
@@ -81,7 +88,7 @@ try {
|
||||
<section class="section alt" id="quicksearch">
|
||||
<div class="container">
|
||||
<div class="section__intro">
|
||||
<h2>Starte direkt mit der Suche nach passenden Treffen.</h2>
|
||||
<h2>Suche nach Treffen in deiner Nähe</h2>
|
||||
</div>
|
||||
<form id="quickSearchForm" class="grid grid-3 quicksearch-form" style="gap: 12px; align-items:flex-end;" action="/search" method="get">
|
||||
<div class="stack gap-6">
|
||||
|
||||
Reference in New Issue
Block a user