HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/xampp/htdocs/wordpress/wp-content/themes/grey-matter/single.php
<?php get_header(); ?>

<!-- CONTENT -->

  <div id="content">

    	<?php if (have_posts()) : ?>

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

    			<h1><?php the_title(); ?></h1>

    			<?php the_content(__('Read the rest of this post &raquo;','grey_matter')); ?>

  				<?php link_pages(__('<p><strong>Pages:</strong> ','grey_matter'), '</p>', __('number ','grey_matter')); ?>

          <div id="postmeta">

            <?php include("inc.postmeta.php"); ?>

          </div>

          <?php comments_template(); ?>

          <br />

      		<div id="navigation">
	   	  		<div class="left"><?php previous_post_link('%link', __('&laquo; Previous post','grey_matter')) ?></div>
	    	  	<div class="right"><?php next_post_link('%link', __('Next post &raquo;','grey_matter')) ?></div>
		      </div>

    		<?php endwhile; ?>

		<?php else : ?>

			  <h1><?php _e('Sorry, no posts matched your criteria', 'grey_matter'); ?></h1>
	  	  <p><a href="<?php echo get_settings('home'); ?>"><?php _e('Visit the homepage &raquo;', 'grey_matter'); ?></a></p>

		<?php endif; ?>

  </div>

  <?php get_sidebar(); ?>

<!-- /CONTENT -->

<?php get_footer(); ?>