| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/aifortoday.co.uk/wwwroot/wp-content/themes/senior-care-lite/ |
Upload File : |
<?php
/**
* The template for displaying all pages
*
* @subpackage Senior Care Lite
* @since 1.0
*/
?>
<?php get_header(); ?>
<main id="content" class="site-main" role="main">
<?php $senior_care_lite_header_option = get_theme_mod( 'senior_care_lite_show_header_image','on');
if($senior_care_lite_header_option == 'on'){ ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="outer-div">
<?php if(has_post_thumbnail()){ ?>
<div class="single-post-image">
<?php the_post_thumbnail(); ?>
</div>
<?php }
else { ?>
<div class="header-image"></div>
<?php } ?>
<div class="inner-div">
<?php //breadcrumb
if ( !is_page_template( 'page-template/custom-home-page.php' ) ) { ?>
<div class="bread_crumb single_breadcrumb align-self-center text-center">
<?php senior_care_lite_breadcrumb(); ?>
</div>
<?php } ?>
<h2 class="text-center mt-4"><?php the_title();?></h2>
</div>
</div>
<?php endwhile; ?>
<div class="content-area my-5">
<div class="container">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'senior-care-lite' ),
'after' => '</div>',
) );
?>
</div>
</article>
<?php endwhile; // End of the loop. ?>
<div class="clearfix"></div>
</div>
</div>
<?php }
else if($senior_care_lite_header_option == 'off'){ ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="without-img-head py-5">
<?php //breadcrumb
if ( !is_page_template( 'page-template/custom-home-page.php' ) ) { ?>
<div class="bread_crumb single_breadcrumb align-self-center text-center">
<div class="without-img">
<?php senior_care_lite_breadcrumb(); ?>
</div>
</div>
<?php } ?>
<h2 class="my-4 withoutimg text-center"><span><?php the_title();?></span></h2>
</div>
<?php endwhile; ?>
<div class="content-area my-5">
<div class="container">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php if(has_post_thumbnail()){ ?>
<div class="pb-4"><?php the_post_thumbnail(); ?></div>
<?php } ?>
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'senior-care-lite' ),
'after' => '</div>',
) );
?>
</div>
</article>
<?php endwhile; // End of the loop. ?>
<div class="clearfix"></div>
</div>
</div>
<?php } ?>
</main>
<?php get_footer(); ?>