HEX
Server: Apache
System: Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64
User: server (1002)
PHP: 8.3.20
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source
Upload Files
File: /home/muoapartman/www/wp-content/themes/hotel-pagoda-lite/page-templates/template-nosidebar.php
<?php
/**
 *
 * Template Name: Page with no sidebar
 *
 * @package Hotel Pagoda
 */

get_header();
?>
    <div class="section-content section">
        <div class="container">
            <div class="row">
                <main id="main" class="site-main" role="main">

                    <?php
                    if(has_post_thumbnail()){
                        the_post_thumbnail();
                    }
                    while ( have_posts() ) : the_post();

                        the_content();

                    endwhile; // End of the loop.
                    ?>

                </main><!-- #main -->
            </div>
        </div>
    </div>
<?php
get_footer();