File: /home/zeusxp5/zenoxpressjobs.com/careers.htm/wp-content/themes/zxldfw-tcompanyllcMain/index.php
<?php get_header(); ?>
<div id="primary" class="site-content" role="main">
<?php if( get_option( 'page_for_posts' ) ): ?>
<?php
$BlogPage = get_option( 'page_for_posts' );
$BlogPageContent = get_post( $BlogPage )->post_content;
if( $BlogPageContent ) {
$BlogPageContent = wptexturize ( $BlogPageContent );
$BlogPageContent = convert_smilies ( $BlogPageContent );
$BlogPageContent = convert_chars ( $BlogPageContent );
$BlogPageContent = wpautop ( $BlogPageContent );
$BlogPageContent = shortcode_unautop ( $BlogPageContent );
$BlogPageContent = prepend_attachment ( $BlogPageContent );
echo $BlogPageContent;
}
else {
echo '<h1>' . get_the_title( $BlogPage ) . '</h1>';
}
?>
<?php endif; ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php webcom_content_nav( 'nav-below' ); ?>
<?php else: ?>
<article id="post-0" class="post">
<header class="entry-header">
<h1>No Posts Found</h1>
</header>
<div class="entry-content">
<?php if ( current_user_can( 'edit_posts' ) ) : ?>
<p>Ready to publish your first post? <a href="<?php echo admin_url( 'post-new.php' ); ?>">Get started here</a>.</p>
<?php else : ?>
<p>Thank you for visiting, we are currently updating our website with new information.</p>
<?php endif; ?>
</div>
</article>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>