Server IP : 192.158.238.246 / Your IP : 3.133.123.140 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/www/wp-content/themes/simple-glassy/page-templates/ |
Upload File : |
<?php /** * Template Name: Full Width Page * * Template for displaying a page without sidebar even if a sidebar widget is published. * * @package SimpleGlassy */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; get_header(); $simpleglassy_container = get_theme_mod( 'simpleglassy_container_type' ); ?> <?php if ( is_front_page() ) : ?> <?php get_template_part( 'global-templates/hero' ); ?> <?php endif; ?> <div class="wrapper" id="full-width-page-wrapper"> <div class="<?php echo esc_attr( $simpleglassy_container ); ?>" id="content"> <div class="row"> <div class="col-md-12 content-area" id="primary"> <main class="site-main" id="main" role="main"> <?php while ( have_posts() ) { the_post(); get_template_part( 'loop-templates/content', 'page' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } } ?> </main><!-- #main --> </div><!-- #primary --> </div><!-- .row end --> </div><!-- #content --> </div><!-- #full-width-page-wrapper --> <?php get_footer();