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/structure/page_full.php
<?php
/**
 * @package WordPress
 * @subpackage Structure
 */

/*
Template Name: Full Width
*/
?>

<?php get_header(); ?>

<div id="content">

	<div id="contentwide">

        <div class="postarea">

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

            <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

            	<div class="posttitle">
            		<h3><?php the_title(); ?></h3>
            	</div>

            	<?php the_content(__('Read More'));?>
            	<?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'theme' ) . '&after=</div>'); ?>
            	<div style="clear:both;"></div>
				<?php edit_post_link('(Edit)', '', ''); ?>

			</div>

            <?php endwhile; else: ?>

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

        </div>

		<div class="postcomments">
			<?php comments_template('',true); ?>
		</div>

	</div>

</div>

<!-- The main column ends  -->

<?php get_footer(); ?>