HEX
Server: Apache
System: Linux webm005.cluster121.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: adventp (418412)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/adventp/www/wp-content/themes/brooklyn/search.php
<?php
/**
 * The template for displaying Search Results pages.
 *
 * @package unitedthemes
 */
global $wp_query;

get_header(); ?>

<?php if ( have_posts() ) : ?>

    <div class="grid-container">
    
        <div id="primary" class="grid-parent grid-100 tablet-grid-100 mobile-grid-100">
            
            <?php if( apply_filters( 'unite_blog_layout', ot_get_option('ut_blog_layout', 'classic') ) == 'grid' ) : ?>          
            
                <div class="ut-blog-grid clearfix">    

            <?php endif; ?> 
            
            <?php while ( have_posts() ) : the_post(); ?>
            
                <?php
                
                /* before article hook */
                ut_before_article_hook();
                    
                /* Include the Post-Format-specific template for the content.
                 * If you want to overload this in a child theme then include a file
                 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
                 */
                 
                get_template_part( 'partials/' . unite_get_template_path() . '/content', get_post_format() );
                
                /* after article hook */
                ut_after_article_hook(); 
                            
                ?>
            
            <?php endwhile; ?>
            
            <?php if( apply_filters( 'unite_blog_layout', ot_get_option('ut_blog_layout', 'classic') ) == 'grid' ) : ?>          
            
                </div>

            <?php endif; ?> 
            
        </div><!-- #primary -->
    
    </div><!-- .grid-container -->
                                    
    <?php if( $wp_query->max_num_pages > 1 ) : ?>
    
        </div>

        <div id="ut-blog-navigation">

            <div class="grid-container">

                <div class="grid-100 mobile-grid-100 tablet-grid-100">

                <?php if ( have_posts() ) : ?>
                    <?php unitedthemes_content_nav( 'nav-below' ); ?>
                <?php endif; ?>

                </div><!-- .grid-100 -->

            </div><!-- .grid-container -->

        </div><!-- #ut-blog-navigation -->

        <div class="ut-empty-div">
    
    <?php endif; ?>

<?php endif; ?>

<?php get_footer(); ?>