19 lines
429 B
PHP
19 lines
429 B
PHP
<?php
|
|
require_once __DIR__ . '/lib/bootstrap.php';
|
|
?>
|
|
|
|
<?php include 'header.php'; ?>
|
|
<?php include 'catbar.php'; ?>
|
|
<?php include 'attrbar.php'; ?>
|
|
|
|
<?php
|
|
// Nur anzeigen, wenn keine speziellen Such- oder Filterparameter gesetzt sind (reine Startseite)
|
|
if (empty($_GET['category']) && empty($_GET['search'])):
|
|
include 'ad_recommendation.php';
|
|
endif;
|
|
?>
|
|
|
|
<?php include 'compcards.php'; ?>
|
|
|
|
<?php include 'footer.php'; ?>
|