HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/posscale/www/WP-POS/wp-content/themes/angle/page.php
<?php get_header(); ?>

<?php $entryCoverBackground = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'featured' ); ?>

<?php if ( has_post_thumbnail() ) { ?>
    <div class="page-header has-post-cover" style="background-image: url('<?php echo $entryCoverBackground[0] ?>');">
<?php } else { ?>
    <div class="page-header">
<?php } ?>

        <div class="inner-wrap">

            <div class="page-header-content">

                <h1 class="archive-title"><?php the_title(); ?></h1>

            </div>
        </div>
    </div>


<div class="inner-wrap">

    <main id="main" class="site-main" role="main">

        <section class="post-wrap">

            <?php while ( have_posts() ) : the_post(); ?>

                <?php get_template_part( 'content', 'page' ); ?>

                <?php if (option::get('comments_page') == 'on') { ?>
                    <?php comments_template(); ?>
                <?php } ?>

            <?php endwhile; // end of the loop. ?>

        </section><!-- .single-post -->

    </main><!-- #main -->

</div>

<?php get_footer(); ?>