![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/renascerdoestoril.com/wp-content/themes/soccer-academy/ |
<?php /** * The template for displaying all pages * * @subpackage Soccer Academy * @since 1.0 */ ?> <?php get_header(); ?> <main id="content" class="site-main" role="main"> <?php $soccer_academy_header_option = get_theme_mod( 'soccer_academy_show_header_image','on'); if($soccer_academy_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 soccer_academy_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:', 'soccer-academy' ), 'after' => '</div>', ) ); ?> </div> </article> <?php endwhile; // End of the loop. ?> <div class="clearfix"></div> </div> </div> <?php } else if($soccer_academy_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 soccer_academy_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:', 'soccer-academy' ), 'after' => '</div>', ) ); ?> </div> </article> <?php endwhile; // End of the loop. ?> <div class="clearfix"></div> </div> </div> <?php } ?> </main> <?php get_footer(); ?>