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/grisaille/page.php
<?php

  /**
  *@desc A page. See single.php is for a blog post layout.
  */

  get_header();

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

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

      <h1 class="postTitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
       	<?php if ( comments_open() || have_comments() ) {?>
		 	<span class="comments"><?php comments_popup_link('0', '1 ', '%'); ?></span>
		<?php }?>
       <div class="clearfix page-title-border-bottom"></div>
      
       
      <div class="post-wrap"><?php the_content(); ?></div>
      <?php wp_link_pages(
      			array(	'before'           => '<p class="pages-links">' . __('Pages:','grisaille'),
    					'after'            => '</p>',
      					'next_or_number'   => 'number',
    					'nextpagelink'     => __('Next page','grisaille'),
    					'previouspagelink' => __('Previous page','grisaille'),
    					'pagelink'         => '%')); ?>
      <p class="postMeta"><?php edit_post_link(__('Edit', 'grisaille'), ''); ?></p>	
    </div>

	  <?php 
		if ( comments_open() || have_comments() ) {
   		 comments_template();
}
?>

  <?php
  

  endwhile; else: ?>

    <p>Sorry, no pages matched your criteria.</p>

<?php
  endif;

  get_footer();
?>