403Webshell
Server IP : 207.244.250.86  /  Your IP : 216.73.216.10
Web Server : Apache
System : Linux plesk1.codeponents.com 4.18.0-240.10.1.el8_3.x86_64 #1 SMP Mon Jan 18 17:05:51 UTC 2021 x86_64
User : motionave ( 10025)
PHP Version : 8.0.15
Disable Function : opcache_get_status
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/vhosts/motionave.com/devsite.motionave.com/wp-content/themes/brooklyn/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/vhosts/motionave.com/devsite.motionave.com/wp-content/themes/brooklyn//front-page.php
<?php get_header(); ?>
    
    <?php if( is_home() ) : ?>
       
    <?php /* start output for classic blog , search , category tag or archive page */ ?>

            <div class="grid-container">
            
            <?php $grid = is_active_sidebar('blog-widget-area') ? 'grid-75 tablet-grid-75 mobile-grid-100' : 'grid-100 tablet-grid-100 mobile-grid-100'; ?>
            
            <div id="primary" class="grid-parent <?php echo $grid; ?>">
            
                        <?php if ( have_posts() ) : ?>
            
                            <?php /* Start the Loop */ ?>
                        
                            <?php while ( have_posts() ) : the_post(); ?>
                        
                            <?php
                                
                                /* 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/content', get_post_format() );
                            ?>
                        
                            <?php endwhile; ?>
            
                        <?php else : ?>
                
                            <?php get_template_part( 'no-results', 'index' ); ?>
                
                    <?php endif; ?>
             
           </div><!-- primary --> 
            
           <?php get_sidebar(); ?>
           
           </div><!-- grid-container --> 
       
        
        <?php if( $wp_query->max_num_pages > 1 ) : ?>
        <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 -->
        <?php endif; ?> 
    
    <?php /* end output for classic blog , search , category tag or archive page */ ?>
    
    
    <?php else: 

    /* needed variables ( we need this variable inside the loop, so we need to store it */
    $is_front_page = is_front_page(); 
    
    /* check if primary navigation has been created and set */
    if ( has_nav_menu( 'primary' ) ) :
        
        $transName = 'ut_front_page_query';
        
        if( ot_get_option('ut_use_cache' , 'off') == 'on') {        
            
            $language_prefix =  defined('ICL_LANGUAGE_CODE') ? '_' . ICL_LANGUAGE_CODE : '';
                
            $cacheTime = ot_get_option('ut_cache_ltime' , '10');
            $pagequery = get_transient( $transName . $language_prefix );
                    
            /* retrieve query arguements */
            if ( false === $pagequery ) {
                                
                $pagequery = ut_prepare_front_query();
                
                if( !empty( $pagequery ) ) {
                            
                    /* start query */
                    query_posts( $pagequery );
                    
                    /* set cache */ 
                    set_transient( $transName . $language_prefix, $pagequery, 60 * $cacheTime );
                    
                } 
                
                
            } else {
            
                query_posts( $pagequery );
            
            }
        
        } else {
            
            /* run query */
            $pagequery = ut_prepare_front_query();
                            
            if( !empty( $pagequery ) ) {
                        
                /* start query */
                query_posts( $pagequery );                
                
            } 
        
        }        
        
    endif; 
    
    ?>
        
    <?php if ( have_posts() ) : ?>
                
            <?php while ( have_posts() ) : the_post(); ?>
                                
                <?php 
                                
                /* needed variables */
                $postID = get_the_ID();
                $post_name = ut_clean_section_id($post->post_name);
                $extraStyle = $extraStyleHeader = 'style="';
                $template_name = get_post_meta( $postID , '_wp_page_template', true );
                                
                /* get section settings*/
                $ut_display_section_header      = get_post_meta( $postID , 'ut_display_section_header' , true );
                
                /* header align */
                $ut_section_header_align        = get_post_meta( $postID , 'ut_section_header_align' , true );
                $ut_section_header_align        = empty($ut_section_header_align) ? 'center' : $ut_section_header_align; /* fallback */                 
                
                /* header width */
                $ut_section_header_width        = get_post_meta( $postID , 'ut_section_header_width' , true );
                $ut_section_header_width        = ( !empty($ut_section_header_width) && $ut_section_header_width == 'ten' ) ? 'grid-100' : 'grid-70 prefix-15';                 
                
                /* header align */
                $ut_section_header_text_align   = get_post_meta( $postID , 'ut_section_header_text_align' , true);
                $ut_section_header_text_align  = ( !empty($ut_section_header_text_align) && ($ut_section_header_text_align == 'left' || $ut_section_header_text_align == 'right')) ? 'header-' . $ut_section_header_text_align : '';
                
                $ut_section_slogan              = get_post_meta( $postID , 'ut_section_slogan' , true );                
                $ut_section_slogan              = wpautop($ut_section_slogan); /* add paragraphs */
                
                $ut_section_title_glow          = get_post_meta( $postID , 'ut_section_title_glow' , true) == 'on' ? 'ut-glow' : ''; 
                $ut_parallax_section            = get_post_meta( $postID , 'ut_parallax_section' , true);            
                $ut_overlay_section             = get_post_meta( $postID , 'ut_overlay_section' , true);
                $ut_section_skin                = get_post_meta( $postID , 'ut_section_skin' , true);
                $ut_section_shadow              = get_post_meta( $postID , 'ut_section_shadow' , true);
                $ut_section_class               = get_post_meta( $postID , 'ut_section_class' , true);
                $ut_section_header_style        = get_post_meta( $postID , 'ut_section_header_style', true );
                $ut_section_header_style        = ( !empty($ut_section_header_style) && $ut_section_header_style != 'global' ) ? $ut_section_header_style : ot_get_option('ut_global_headline_style'); 
                
                /* video settings */
                $ut_section_video_state         = get_post_meta( $postID , 'ut_section_video_state' , true );
                $ut_section_video_source        = get_post_meta( $postID , 'ut_section_video_source' , true );
                $ut_section_video_class         = (isset($ut_section_video_state) && $ut_section_video_state == 'on' && isset($ut_section_video_source) && $ut_section_video_source == 'selfhosted') ? 'ut-video-section' : '';
                                               
                /* section  width */
                $data_width = $ut_section_width = get_post_meta( $postID , 'ut_section_width' , true); 
                $ut_section_width_class = NULL;
                
                if( $ut_section_width == 'split' ) {
                    $data_width = 'centered';
                    $ut_section_width_class = 'ut-split-screen';
                }
                
                
                /* section shadow */ 
                $shadow = ( $ut_section_shadow == 'on' ) ? 'ut-section-shadow' : '';
                
                /* section post parent */
                $first_parent = array_reverse( get_post_ancestors( $postID ) );
                if( !empty( $first_parent[0] ) ) {
                    
                    $first_parent = get_page($first_parent[0]);
                    $post_parent = 'data-parent="section-' . ut_clean_section_id($first_parent->post_name) . '"';
                    
                } else {
                    
                    $post_parent = NULL;
                
                }
                
                /* section header style */
                $ut_section_header_style = !empty($ut_section_header_style) ? $ut_section_header_style : 'pt-style-1';
                    
                /* fallback if there is no entry or if someone switched from another theme */
                $ut_section_width = empty($ut_section_width) ? 'centered' : $ut_section_width; 
                
                /* get parallax settings*/
                $ut_parallax_image = get_post_meta( get_the_ID() , 'ut_parallax_image' , true );
                if( is_array($ut_parallax_image) && !empty( $ut_parallax_image['background-image'] ) ) {
                    
                    $ut_parallax_image = $ut_parallax_image['background-image'];
                
                } elseif( !is_array($ut_parallax_image) && !empty($ut_parallax_image) ) {
                    
                    $ut_parallax_image = $ut_parallax_image;
                
                } else {
                    
                    $ut_parallax_image = NULL;
                    
                }
                
                if( empty($ut_parallax_image) ) {
                    
                    /* check if a background color is available */
                    $ut_section_background_color = get_post_meta( get_the_ID() , 'ut_section_background_color' , true);
                    
                    /* no color available - handle this section as a parallax section*/
                    if( empty($ut_section_background_color) ) {
                        $ut_parallax_image = true;
                    }
                    
                } ?>
                
                    
                <?php 
                /*
                |--------------------------------------------------------------------------
                | Output for Parallax Section
                |--------------------------------------------------------------------------
                */
                ?>                        
                
                <?php if( $ut_parallax_section == 'on') : ?>
                        
                    <section id="<?php echo $post_name; ?>" data-effect="fadeIn" data-width="<?php echo $data_width; ?>" class="page-id-<?php echo $post->ID; ?> entry-content parallax-banner parallax-section <?php echo $ut_section_width_class; ?> <?php echo $ut_section_skin; ?> <?php echo $ut_section_class; ?> <?php echo $shadow; ?>">
                    
                    <a class="ut-offset-anchor" <?php echo $post_parent; ?> id="section-<?php echo $post_name; ?>" name="section-<?php echo $post_name; ?>"><?php echo $post_name; ?></a>
                        
                        <div class="parallax-scroll-container" data-parallax="true" data-speed="0.4" data-direction="down"></div>
                        
                        <?php if( $ut_overlay_section == 'on') : ?>
                               
                            <?php $ut_overlay_pattern = get_post_meta( $postID , 'ut_overlay_pattern' , true); ?>
                            <?php $ut_overlay_pattern = $ut_overlay_pattern == 'on' ? 'parallax-overlay-pattern' : ''; ?>
                            <?php $ut_overlay_pattern_style = get_post_meta( $postID , 'ut_overlay_pattern_style' , true); ?>
                            
                            <div class="parallax-overlay <?php echo $ut_overlay_pattern; ?> <?php echo $ut_overlay_pattern_style; ?>">
                            
                        <?php endif; ?>                        
                            
                        <?php /* Output Split Content */ ?> 
                        
                        <?php if( $ut_section_width == 'split' ) : ?>
                            
                            <?php /* Content Align Left */ ?> 
                            
                            <?php $ut_split_content_align = get_post_meta( $postID , 'ut_split_content_align' , true); ?>
                            <?php $poster_image = wp_get_attachment_url( get_post_thumbnail_id( $postID ) ); ?>
                            
                            <?php if( $ut_split_content_align == 'left' ) : ?>                            
                            
                                <div class="grid-40 prefix-5 suffix-5 tablet-grid-40 tablet-prefix-5 tablet-suffix-5 mobile-grid-100 ut-split-content-left">
                                
                                        <?php if( $ut_display_section_header == 'show' ) : ?>
                                
                                               <header class="<?php echo empty($ut_parallax_image)  ? 'section-header' : 'parallax-header'; ?> <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                                    <h2 class="<?php echo empty($ut_parallax_image) ? 'section-title' : 'parallax-title'; ?> <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                                    
                                                    <?php if(!empty($ut_section_slogan)) : ?>
                                                        
                                                        <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                                        
                                                    <?php endif; ?>
                                                    
                                                </header>
                                        
                                        <?php endif; /* end $ut_display_section_header == 'show' */ ?>
                                        
                                        <?php $content = get_the_content(); ?>
                                        
                                        <?php if( !empty($content) || $template_name == 'templates/template-team.php' ) : ?>
                                            
                                            <div class="section-content">
                                                
                                                <?php the_content(); ?>
                                                
                                                <?php if( $template_name == 'templates/template-team.php' ) : ?>
                        
                                                    <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                        
                                                <?php endif; /* $template_name == 'templates/template-team.php' */ ?>
                                                
                                            </div>
                                        
                                        <?php endif; ?>
                                    
                                </div> <!-- end /grid-40 prefix-5 -->
                                
                                <div class="grid-50 <?php echo (!empty($poster_image)) ? 'tablet-grid-50 mobile-grid-100' : 'hide-on-tablet hide-on-mobile'; ?> tablet-grid-50 mobile-grid-100 ut-split-screen-poster" data-posterparent="<?php echo $post_name; ?>"></div>
                            
                            <?php /* Content Align Right */ ?> 
                            
                            <?php else :?>
                                                
                                <div class="grid-50 <?php echo (!empty($poster_image)) ? 'tablet-grid-50 mobile-grid-100' : 'hide-on-tablet hide-on-mobile'; ?> tablet-grid-50 mobile-grid-100 ut-split-screen-poster" data-posterparent="<?php echo $post_name; ?>"></div>
                                
                                <div class="grid-40 prefix-5 suffix-5 tablet-grid-40 tablet-prefix-5 tablet-suffix-5 mobile-grid-100 ut-split-content-right">
                                
                                        <?php if( $ut_display_section_header == 'show' ) : ?>
                                
                                               <header class="<?php echo empty($ut_parallax_image)  ? 'section-header' : 'parallax-header'; ?> <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                                    
                                                    <h2 class="<?php echo empty($ut_parallax_image) ? 'section-title' : 'parallax-title'; ?> <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                                    
                                                    <?php if(!empty($ut_section_slogan)) : ?>
                                                        
                                                        <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                                        
                                                    <?php endif; ?>
                                                    
                                                </header>
                                        
                                        <?php endif; /* end $ut_display_section_header == 'show' */ ?>
                                        
                                        <?php $content = get_the_content(); ?>
                                        
                                        <?php if( !empty($content) || $template_name == 'templates/template-team.php' ) : ?>
                                            
                                            <div class="section-content">
                                                
                                                <?php the_content(); ?>
                                                
                                                <?php if( $template_name == 'templates/template-team.php' ) : ?>
                        
                                                    <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                        
                                                <?php endif; /* $template_name == 'templates/template-team.php' */ ?>
                                                
                                            </div>
                                        
                                        <?php endif; ?>
                                    
                                </div> <!-- end /grid-40 prefix-5 -->
                            
                            <?php endif; ?>
                            
                        <?php /* Output for Centered or FullWidth Section */ ?> 
                            
                        <?php else : ?>
                            
                            <?php /* Output for left header align */ ?>
                            
                            <?php if( !empty($ut_section_header_align) && $ut_section_header_align == 'left' ) : ?>
                            
                            <div class="<?php if($ut_section_width == 'centered') : ?>grid-container<?php endif; ?> parallax-content section-header-holder">
                                
                                <!-- parallax header -->
                                <div class="grid-50 mobile-grid-100 tablet-grid-50 ut-split-screen">
                                
                                <?php if( $ut_display_section_header == 'show' ) : ?>                                    
                                     
                                    <header class="parallax-header <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                        <h2 class="parallax-title <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                        
                                        <?php if(!empty($ut_section_slogan)) : ?>
                                        
                                            <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                        
                                        <?php endif; ?>
                                            
                                    </header>                                                                    
                                
                                <?php endif; ?>
                                
                                </div>
                                <!-- close parallax header -->
                                
                                <div class="section-content">
                                
                                    <div class="grid-50 mobile-grid-100 tablet-grid-50">
                                        
                                        <?php the_content(); ?>
                                    
                                        <?php if( $template_name == 'templates/template-team.php' ) : ?>
                
                                            <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                
                                        <?php endif; ?>
                                    
                                    </div>
                                
                                </div>         
                                
                            </div>
                            
                            <?php endif; ?>
                            
                            <?php /* End Output for left header align */ ?>
                            
                            
                            <?php /* Output for right header align */ ?>
                            
                            <?php if( !empty($ut_section_header_align) && $ut_section_header_align == 'right' ) : ?>
                            
                            <div class="<?php if($ut_section_width == 'centered') : ?>grid-container<?php endif; ?> parallax-content section-header-holder">
                                
                                <?php 
                                
                                $the_content = get_the_content(); 
                                $push_pull = empty($the_content) ? 'push-50 tablet-push-50' : ''; 
                                
                                ?>
                                
                                <?php if(!empty($the_content)) : ?>
                                
                                <div class="section-content">
                                
                                    <div class="grid-50 mobile-grid-100 tablet-grid-50">
                                        
                                        <?php the_content(); ?>
                                    
                                        <?php if( $template_name == 'templates/template-team.php' ) : ?>
                
                                            <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                
                                        <?php endif; ?>
                                    
                                    </div>
                                
                                </div>
                                
                                <?php endif; ?>
                                
                                <!-- parallax header -->
                                <div class="grid-50 mobile-grid-100 tablet-grid-50 ut-split-screen <?php echo $push_pull; ?>">
                                
                                <?php if( $ut_display_section_header == 'show' ) : ?>                                    
                                     
                                    <header class="parallax-header <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                        <h2 class="parallax-title <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                        
                                        <?php if(!empty($ut_section_slogan)) : ?>
                                        
                                            <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                        
                                        <?php endif; ?>
                                            
                                    </header>                                                                    
                                
                                <?php endif; ?>
                                
                                </div>
                                <!-- close parallax header -->        
                                
                            </div>
                            
                            <?php endif; ?>
                            
                            <?php /* End Output for right header align */ ?>
                            
                            
                            <?php /* Output for center header align */ ?>
                            
                            <?php if( !empty($ut_section_header_align) && $ut_section_header_align == 'center' ) : ?> 
                                                        
                                <?php if( $ut_display_section_header == 'show' ) : ?>
                                
                                    <div class="<?php if($ut_section_width == 'centered') : ?>grid-container<?php endif; ?> parallax-content section-header-holder">  
                                    
                                        <!-- parallax header -->
                                        <div class="<?php echo $ut_section_header_width; ?> mobile-grid-100 tablet-grid-100">
                                            <header class="parallax-header <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                                <h2 class="parallax-title <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                                
                                                <?php if(!empty($ut_section_slogan)) : ?>
                                                
                                                    <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                                
                                                <?php endif; ?>
                                                    
                                            </header>
                                        </div>
                                        <!-- close parallax header -->
                                    
                                    </div>
                                    
                                    <div class="clear"></div>
                                     
                                <?php endif; ?>
                                                        
                            <?php $content = get_the_content(); if( !empty($content) || $template_name == 'templates/template-team.php' ) : ?>
                            
                                <?php if( $ut_section_width == 'centered' ) : ?>
                                
                                    <div class="grid-container section-content"><div class="grid-100 mobile-grid-100 tablet-grid-100">
                                    
                                <?php else : ?>
                                    
                                    <div class="section-content">
                                    
                                <?php endif; ?>
                                    
                                        <?php the_content(); ?>
                                        
                                        <?php if( $template_name == 'templates/template-team.php' ) : ?>
                
                                            <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                
                                        <?php endif; ?>
                                    
                                <?php if( $ut_section_width == 'centered' ) : ?>
                                    
                                    </div></div>
                                
                                <?php else : ?>
                                
                                    </div>
                                
                                <?php endif; ?>
                            
                            <?php endif; ?>
                            
                        <?php endif; /* End Output for center header align */ ?>
                    
                    <?php endif; ?> 
                    
                    <?php if( $ut_overlay_section == 'on') : ?>

                        <div class="clear"></div></div>
                            
                    <?php endif; ?>
                    
                    <div class="ut-scroll-up-waypoint" data-section="section-<?php echo $post_name; ?>" <?php echo $post_parent; ?>></div>                                
                    
                    </section>
                    
                    <div class="clear"></div>
                    
                <?php 
                /*
                |--------------------------------------------------------------------------
                | Output for Normal Section
                |--------------------------------------------------------------------------
                */
                ?>
                               
                <?php else : ?>

                <section id="<?php echo $post_name; ?>" data-effect="fadeIn" data-width="<?php echo $ut_section_width; ?>" class="page-id-<?php echo $post->ID; ?> entry-content normal-background <?php echo $ut_section_width_class; ?> <?php echo $ut_section_skin; ?> <?php echo $ut_section_class; ?> <?php echo $shadow; ?> <?php echo $ut_section_video_class; ?>">
                
                <a class="ut-offset-anchor" <?php echo $post_parent; ?> id="section-<?php echo $post_name; ?>" name="section-<?php echo $post_name; ?>"><?php echo $post_name; ?></a>
                        
                        <?php 
                        /*
                        |--------------------------------------------------------------------------
                        | Section Video Player
                        |--------------------------------------------------------------------------
                        */
                        if(!empty($ut_section_video_state) && $ut_section_video_state == 'on') :
                    
                            $playerconfig = array();
                            
                            if($ut_section_video_source == 'youtube') {
                                $ut_section_video = get_post_meta( $postID , 'ut_section_video' , true );
                                if(isset($ut_section_video) && $ut_section_video != '') { array_push($playerconfig, 'video="'.$ut_section_video.'"'); }
                            }
                            
                            if($ut_section_video_source == 'selfhosted') {
                                $ut_section_video_mp4 = get_post_meta( $postID , 'ut_section_video_mp4' , true );
                                if(isset($ut_section_video_mp4) && $ut_section_video_mp4 != '') { array_push($playerconfig, 'mp4="'.$ut_section_video_mp4.'"'); }
                                
                                $ut_section_video_ogg = get_post_meta( $postID , 'ut_section_video_ogg' , true );
                                if(isset($ut_section_video_ogg) && $ut_section_video_ogg != '') { array_push($playerconfig, 'ogg="'.$ut_section_video_ogg.'"'); }
                                
                                $ut_section_video_webm = get_post_meta( $postID , 'ut_section_video_webm' , true );
                                if(isset($ut_section_video_webm) && $ut_section_video_webm != '') { array_push($playerconfig, 'webm="'.$ut_section_video_webm.'"'); }
                                
                                $ut_section_video_preload = get_post_meta( $postID , 'ut_section_video_preload' , true );
                                if(isset($ut_section_video_preload) && $ut_section_video_preload != '') { array_push($playerconfig, 'preload="'.$ut_section_video_preload.'"'); }
                            }
                            
                            $ut_section_video_loop = get_post_meta( $postID , 'ut_section_video_loop' , true );
                            if(isset($ut_section_video_loop) && $ut_section_video_loop != '') { array_push($playerconfig, 'loop="'.$ut_section_video_loop.'"'); }
                            
                            $ut_section_video_volume = get_post_meta( $postID , 'ut_section_video_volume' , true );
                            if(isset($ut_section_video_volume) && $ut_section_video_volume != '') { array_push($playerconfig, 'volume="'.$ut_section_video_volume.'"'); }
                            
                            $ut_section_video_sound = get_post_meta( $postID , 'ut_section_video_sound' , true );
                            if(isset($ut_section_video_sound) && $ut_section_video_sound != '') { array_push($playerconfig, 'sound="'.$ut_section_video_sound.'"'); }
                            
                            $ut_section_video_mute_button = get_post_meta( $postID , 'ut_section_video_mute_button' , true );
                            if(isset($ut_section_video_mute_button) && $ut_section_video_mute_button != '') { array_push($playerconfig, 'mutebutton="'.$ut_section_video_mute_button.'"'); }
                            
                            $ut_section_video_poster = get_post_meta( $postID , 'ut_section_video_poster' , true );
                            echo do_shortcode('[ut_section_video id="'.$postID.'" section="#'.$post_name.'" source="'.$ut_section_video_source.'" '.implode(" ", $playerconfig).']'); ?>    
                        
                        <?php endif; ?>
                        
                        <?php if( $ut_overlay_section == 'on') : ?>
                                
                            <?php $ut_overlay_pattern = get_post_meta( $postID , 'ut_overlay_pattern' , true); ?>
                            <?php $ut_overlay_pattern = $ut_overlay_pattern == 'on' ? 'parallax-overlay-pattern' : ''; ?>
                            <?php $ut_overlay_pattern_style = get_post_meta( $postID , 'ut_overlay_pattern_style' , true); ?>
                            
                            <div class="parallax-overlay <?php echo $ut_overlay_pattern; ?> <?php echo $ut_overlay_pattern_style; ?>">
                            
                        <?php endif; ?>                        
                        
                        <?php if( $ut_section_width == 'split' ) : ?>
                            
                            <?php /* Content Align Left */ ?> 
                            
                            <?php $ut_split_content_align = get_post_meta( $postID , 'ut_split_content_align' , true); ?>
                            <?php $poster_image = wp_get_attachment_url( get_post_thumbnail_id( $postID ) ); ?>
                            
                            <?php if( $ut_split_content_align == 'left' ) : ?>                            
                            
                                <div class="grid-40 prefix-5 suffix-5 tablet-grid-40 tablet-prefix-5 tablet-suffix-5 mobile-grid-100 ut-split-content-left">
                                
                                        <?php if( $ut_display_section_header == 'show' ) : ?>
                                
                                               <header class="<?php echo empty($ut_parallax_image)  ? 'section-header' : 'parallax-header'; ?> <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                                    <h2 class="<?php echo empty($ut_parallax_image) ? 'section-title' : 'parallax-title'; ?> <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                                    
                                                    <?php if(!empty($ut_section_slogan)) : ?>
                                                        
                                                        <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                                        
                                                    <?php endif; ?>
                                                    
                                                </header>
                                        
                                        <?php endif; /* end $ut_display_section_header == 'show' */ ?>
                                        
                                        <?php $content = get_the_content(); ?>
                                        
                                        <?php if( !empty($content) || $template_name == 'templates/template-team.php' ) : ?>
                                            
                                            <div class="section-content">
                                                
                                                <?php the_content(); ?>
                                                
                                                <?php if( $template_name == 'templates/template-team.php' ) : ?>
                        
                                                    <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                        
                                                <?php endif; /* $template_name == 'templates/template-team.php' */ ?>
                                                
                                            </div>
                                        
                                        <?php endif; ?>
                                    
                                </div> <!-- end /grid-40 prefix-5 -->
                                
                                <div class="grid-50 <?php echo (!empty($poster_image)) ? 'tablet-grid-50 mobile-grid-100' : 'hide-on-tablet hide-on-mobile'; ?> ut-split-screen-poster" data-posterparent="<?php echo $post_name; ?>"></div>
                            
                            <?php /* Content Align Right */ ?> 
                            
                            <?php else :?>
                                                
                                <div class="grid-50 <?php echo (!empty($poster_image)) ? 'tablet-grid-50 mobile-grid-100' : 'hide-on-tablet hide-on-mobile'; ?> tablet-grid-50 mobile-grid-100 ut-split-screen-poster" data-posterparent="<?php echo $post_name; ?>"></div>
                                
                                <div class="grid-40 prefix-5 suffix-5 tablet-grid-40 tablet-prefix-5 tablet-suffix-5 mobile-grid-100 ut-split-content-right">
                                
                                        <?php if( $ut_display_section_header == 'show' ) : ?>
                                
                                               <header class="<?php echo empty($ut_parallax_image)  ? 'section-header' : 'parallax-header'; ?> <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                                    
                                                    <h2 class="<?php echo empty($ut_parallax_image) ? 'section-title' : 'parallax-title'; ?> <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                                    
                                                    <?php if(!empty($ut_section_slogan)) : ?>
                                                        
                                                        <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                                        
                                                    <?php endif; ?>
                                                    
                                                </header>
                                        
                                        <?php endif; /* end $ut_display_section_header == 'show' */ ?>
                                        
                                        <?php $content = get_the_content(); ?>
                                        
                                        <?php if( !empty($content) || $template_name == 'templates/template-team.php' ) : ?>
                                            
                                            <div class="section-content">
                                                
                                                <?php the_content(); ?>
                                                
                                                <?php if( $template_name == 'templates/template-team.php' ) : ?>
                        
                                                    <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                        
                                                <?php endif; /* $template_name == 'templates/template-team.php' */ ?>
                                                
                                            </div>
                                        
                                        <?php endif; ?>
                                    
                                </div> <!-- end /grid-40 prefix-5 -->
                            
                            <?php endif; ?>
                        
                        <?php /* output for centered or fullwidth section */ ?>
                                                
                        <?php else : ?>
                            
                            <?php /* Output for left header align */ ?>
                            
                            <?php if( !empty($ut_section_header_align) && $ut_section_header_align == 'left' ) : ?>
                            
                            <div class="<?php if($ut_section_width == 'centered') : ?>grid-container<?php endif; ?> section-header-holder">
                                
                                <!-- section header -->
                                <div class="grid-50 mobile-grid-100 tablet-grid-50 ut-split-screen">
                                
                                <?php if( $ut_display_section_header == 'show' ) : ?>
                                    
                                    <header class="<?php echo empty($ut_parallax_image) ? 'section-header' : 'parallax-header'; ?> <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                        <h2 class="<?php echo empty($ut_parallax_image) ? 'section-title' : 'parallax-title'; ?> <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                        
                                        <?php if(!empty($ut_section_slogan)) : ?>
                                            
                                            <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                            
                                        <?php endif; ?>
                                        
                                    </header>                                    
                                
                                <?php endif; ?>
                                
                                </div>
                                <!-- close section header -->
                                
                                <div class="section-content">
                                
                                    <div class="grid-50 mobile-grid-100 tablet-grid-50">
                                        
                                        <?php the_content(); ?>
                                    
                                        <?php if( $template_name == 'templates/template-team.php' ) : ?>
                
                                            <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                
                                        <?php endif; ?>
                                    
                                    </div>
                                
                                </div>         
                                
                            </div>
                            
                            <?php endif; ?>
                            
                            <?php /* End Output for left header align */ ?>
                            
                            
                            
                            
                            
                            <?php /* Output for right header align */ ?>
                            
                            <?php if( !empty($ut_section_header_align) && $ut_section_header_align == 'right' ) : ?>
                            
                            <div class="<?php if($ut_section_width == 'centered') : ?>grid-container<?php endif; ?> section-header-holder">
                                
                                <?php 
                                
                                $the_content = get_the_content(); 
                                $push_pull = empty($the_content) ? 'push-50 tablet-push-50' : ''; 
                                
                                ?>
                                
                                <?php if( !empty($the_content) ) : ?>
                                
                                    <div class="section-content">
                                    
                                        <div class="grid-50 mobile-grid-100 tablet-grid-50">
                                            
                                            <?php the_content(); ?>
                                        
                                            <?php if( $template_name == 'templates/template-team.php' ) : ?>
                    
                                                <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                    
                                            <?php endif; ?>
                                        
                                        </div>
                                    
                                    </div>
                                
                                <?php endif; ?>
                                
                                <!-- section header -->
                                <div class="grid-50 tablet-grid-50 mobile-grid-100 ut-split-screen <?php echo $push_pull; ?>">
                                
                                <?php if( $ut_display_section_header == 'show' ) : ?>
                                    
                                    <header class="<?php echo empty($ut_parallax_image) ? 'section-header' : 'parallax-header'; ?> <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                        <h2 class="<?php echo empty($ut_parallax_image) ? 'section-title' : 'parallax-title'; ?> <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                        
                                        <?php if(!empty($ut_section_slogan)) : ?>
                                            
                                            <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                            
                                        <?php endif; ?>
                                        
                                    </header>                                    
                                
                                <?php endif; ?>
                                
                                </div>
                                <!-- close section header -->                                         
                                
                            </div>
                            
                            <?php endif; ?>
                            
                            <?php /* End Output for right header align */ ?>
                            
                            
                            
                            
                            
                            <?php /* Output for center header align */ ?>
                            
                            <?php if( !empty($ut_section_header_align) && $ut_section_header_align == 'center' ) : ?>
                                            
                                <?php if( $ut_display_section_header == 'show' && !empty( $pagequery ) ) : ?>
                                
                                    <div class="<?php if($ut_section_width == 'centered') : ?>grid-container<?php endif; ?> section-header-holder">
                                    
                                        <!-- section header -->
                                        <div class="<?php echo $ut_section_header_width; ?> mobile-grid-100 tablet-grid-100">
                                            
                                            <header class="<?php echo empty($ut_parallax_image) ? 'section-header' : 'parallax-header'; ?> <?php echo $ut_section_header_style; ?> <?php echo $ut_section_header_text_align; ?>">
                                                <h2 class="<?php echo empty($ut_parallax_image) ? 'section-title'  : 'parallax-title'; ?> <?php echo $ut_section_title_glow; ?>"><span><?php the_title(); ?></span></h2>
                                                
                                                <?php if(!empty($ut_section_slogan)) : ?>
                                                    
                                                    <div class="lead"><?php echo do_shortcode( ut_translate_meta($ut_section_slogan) ); ?></div>
                                                    
                                                <?php endif; ?>
                                                
                                            </header>
                                        </div>
                                        <!-- close section header -->
                                
                                    </div>
                                    
                                    <div class="clear"></div>
                                
                                <?php endif; /* end $ut_display_section_header == 'show' */ ?>                            
                            
                                <?php if( empty( $pagequery ) ) : ?>
                                    
                                    <!-- Installation Notes -->    
                                    <?php ut_installation_note(); ?>                           
                                 
                                <?php endif; ?>                            
                            
                                <?php $content = get_the_content(); 
                                                            
                                if( !empty($content) && !empty( $pagequery ) || $template_name == 'templates/template-team.php' ) : ?>                        

                                    <?php if( $ut_section_width == 'centered' ) : ?>
                                    
                                        <div class="grid-container section-content"><div class="grid-100 mobile-grid-100 tablet-grid-100">
                                            
                                    <?php else : ?>
                                            
                                        <div class="section-content">
                                            
                                    <?php endif; ?> 
                                        
                                        
                                        <?php the_content(); ?>
                                        
                                        <?php if( $template_name == 'templates/template-team.php' ) : ?>
                
                                            <?php get_template_part( 'templates/template' , 'team' ); ?> 
                                                
                                        <?php endif; ?>                                        
                                        
                                
                                    <?php if( $ut_section_width == 'centered' ) : ?>
                                            
                                        </div></div>
                                
                                    <?php else : ?>
                                
                                        </div>
                            
                                    <?php endif; ?>
                            
                            <?php endif; /* End Output for left header center */ ?>
                        
                        <?php endif; ?>
                    
                    <?php endif; ?>         
                
                <?php if( $ut_overlay_section == 'on') : ?>

                    <div class="clear"></div></div>
                        
                <?php endif; ?>
                        
                <div class="ut-scroll-up-waypoint" data-section="section-<?php echo $post_name; ?>" <?php echo $post_parent; ?>></div>      
                
                </section>
                    
                <div class="clear"></div> 
 
                <?php endif; ?>
                                    
            <?php endwhile; ?>

    <?php else : ?>
    
        <?php get_template_part( 'no-results', 'index' ); ?>
    
    <?php endif; ?>                        

<?php wp_reset_query(); ?>

<?php endif; ?>
               
<?php get_footer(); ?>

Youez - 2016 - github.com/yon3zu
LinuXploit