Files
homeproz/wp-content/themes/homeproz/archive-property.php
T

40 lines
939 B
PHP

<?php
/**
* Property Archive Template
*
* Displays the properties listing page
*
* @package HomeProz
*/
// Prevent direct access
if (!defined('ABSPATH')) {
exit;
}
get_header();
?>
<main id="primary" class="site-main">
<!-- Archive Hero -->
<section class="archive-hero">
<div class="container">
<h1 class="archive-hero-title">Find Your Perfect Property</h1>
<p class="archive-hero-subtitle">Browse our selection of homes, land, and commercial properties in southern Minnesota.</p>
</div>
</section>
<div class="container">
<!-- Filters -->
<?php get_template_part('template-parts/property/property-filters'); ?>
<!-- Results -->
<div id="property-results">
<?php get_template_part('template-parts/property/property-results'); ?>
</div>
</div>
</main>
<?php
get_footer();