HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/enterprise/fullwidth-page.php
<?php
/**
 * Template Name: Full-width, no sidebar
 *
 * @package Enterprise
 */
?>
<?php get_header(); ?>

<div id="content">

	<div id="content-left" class="full-width">

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

            <div <?php post_class(); ?>>

                <div class="entry">
                	<h1><?php the_title(); ?></h1>
                	<?php the_content(__('Read more', 'enterprise'));?><div class="clear"></div>
                	<?php edit_post_link(__('(Edit)', 'enterprise'), '', ''); ?><div class="clear"></div>
                </div>

            </div>

        <?php endwhile; else: ?>
        <p><?php _e('Sorry, no posts matched your criteria.', 'enterprise'); ?></p><?php endif; ?>

        <?php if ( comments_open() ) : // If comments are open, but there are no comments ?>
         <div id="comments">
            <?php comments_template('',true); ?>
        </div>
        <?php endif; ?>

    </div>

</div>

<?php get_footer(); ?>