| Server IP : 217.160.0.251 / Your IP : 216.73.216.183 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u94981163 ( 8991765) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/15/d754908516/htdocs/wp-content/themes/est-project/templates/ |
Upload File : |
<?php
/**
* @var Es_Settings_Container $es_settings
*/
get_header();
$template = get_option( 'template' );
global $es_settings;
?>
<?php if ( is_active_sidebar( 'top-sidebar' ) ) {
dynamic_sidebar( 'top-sidebar' );
} ?>
<?php do_action( 'es_before_content' ); ?>
<?php do_action( 'es_before_content_list' ); ?>
<div class="es-wrap js-posts-wrapper <?php echo get_option( 'template' ); ?>">
<h1><?php echo ! empty( $title ) ? $title : __( 'Properties', 'es-project' ); ?></h1>
<?php do_action( 'es_archive_sorting_dropdown' ); ?>
<?php if ( have_posts() ): ?>
<ul class="es-listing js-archive es-layout-<?php echo $es_settings->listing_layout; ?>">
<?php while ( have_posts() ) : the_post();
load_template( ES_PROJECT_TEMPLATES_DIR . 'content-archive.php', FALSE );
endwhile; ?>
</ul>
<?php echo es_the_pagination( $properties ); ?>
<?php else: ?>
<p><?php _e( 'Sorry, nothing found', 'es-project' ); ?></p>
<?php endif; ?>
<?php do_action( 'es_after_content_list' ); ?>
<?php do_action( 'es_after_content' ); ?>
<?php if ( is_active_sidebar( 'bottom-sidebar' ) ) {
dynamic_sidebar( 'bottom-sidebar' );
} ?>
<?php get_footer();