%k25u25%fgd5n!
/home/nancmxek/ljsecuredoors.com/wp-content/themes/fauxis/single-metlife_case.php
<?php get_header(); 
$data = \FAUXIS\Includes\Classes\Common::instance()->data( 'single-fauxis_case' )->get();
do_action( 'fauxis_banner', $data );
$allowed_tags = wp_kses_allowed_html('post'); ?>

<?php while( have_posts() ) : the_post(); ?>

<!-- project-details -->
<section class="project-details">
    <div class="auto-container">
        <div class="project-details-content">
            <div class="title-inner">
                <div class="row clearfix">
                    <div class="col-lg-6 col-md-12 col-sm-12 title-column">
                        <div class="sec-title mr-80">
                            <h5><span>//</span><?php echo wp_kses(get_post_meta(get_the_id(), 'subtitle', true), true); ?></h5>
                            <h2><?php the_title(); ?></h2>
                        </div>
                    </div>
                    <div class="col-lg-6 col-md-12 col-sm-12 text-column">
                        <div class="text ml-50 mt-40">
                            <p><?php echo wp_kses(get_post_meta(get_the_id(), 'top_description', true), true); ?></p>
                        </div>
                    </div>
                </div>
            </div>
            
            <?php $main_image = get_post_meta(get_the_id(), 'case_main_image', true);
			if($main_image) { ?>
            <figure class="image-box"><img src="<?php echo wp_get_attachment_url($main_image['id']); ?>" alt="<?php esc_attr_e('Awesome Image', 'fauxis'); ?>"></figure>
            <?php } ?>
            <div class="inner-box">
                <div class="row clearfix">
                    <div class="col-lg-8 col-md-12 col-sm-12 big-column">
                    	<?php the_content(); ?>
                    </div>
                    <div class="col-lg-4 col-md-12 col-sm-12 small-column">
                        <div class="info-box">
                            <h3><?php esc_html_e('Description', 'fauxis'); ?></h3>
                            <ul class="list clearfix">
                                <li>
                                    <span><?php esc_html_e('Date', 'fauxis'); ?></span>
                                    <h5><?php echo wp_kses(get_post_meta( get_the_id(), 'date', true ), true); ?></h5>
                                </li>
                                <li>
                                    <span><?php esc_html_e('Clients', 'fauxis'); ?></span>
                                    <h5><?php echo wp_kses(get_post_meta( get_the_id(), 'clients', true ), true); ?></h5>
                                </li>
                                <li>
                                    <span><?php esc_html_e('Project Type', 'fauxis'); ?></span>
                                    <h5><?php echo wp_kses(get_post_meta( get_the_id(), 'project_type', true ), true); ?></h5>
                                </li>
                            </ul>
                            <div class="social-links">
                                <span><?php esc_html_e('Share', 'fauxis'); ?></span>
                                <ul class="social clearfix">
                                	<li><a href="http://www.facebook.com/sharer.php?u=<?php echo esc_url(get_permalink(get_the_id())); ?>" target="_blank"><span class="fab fa-facebook-f"></span></a></li>
                                    <li><a href="https://twitter.com/share?url=<?php echo esc_url(get_permalink(get_the_id())); ?>&text=<?php echo esc_attr($post_slug=the_title()); ?>" target="_blank"><span class="fab fa-twitter"></span></a></li>
                                    <li><a href="http://www.linkedin.com/shareArticle?url=<?php echo esc_url(get_permalink(get_the_id())); ?>&title=<?php echo esc_attr($post_slug=the_title()); ?>"><span class="fab fa-linkedin"></span></a></li>
                                    <li><a href="https://pinterest.com/pin/create/bookmarklet/?url=<?php echo esc_url(get_permalink(get_the_id())); ?>&description=<?php echo esc_attr($post_slug=the_title()); ?>"><span class="fab fa-pinterest"></span></a></li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>
<!-- project-details end -->

<?php endwhile; ?>

<?php get_footer(); ?>