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/theflexguys.com/baronconstruct/wp-content/themes/blix/single.php
<?php get_header(); ?>

<div id="content">

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

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

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

		<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

		<p class="info">
		<?php if ( $post->comment_status == "open" ) ?>
   		<em class="date"><?php the_time( get_option( 'date_format' ) ); ?><!-- at <?php the_time(); ?>--></em>
   		<!--<em class="author"><?php the_author(); ?></em>-->
   		<?php edit_post_link( __( 'Edit', 'blix' ), '<span class="editlink">', '</span>' ); ?>
   		</p>

		<?php the_content(); ?>
		<?php wp_link_pages(); ?>
		<p id="filedunder">
			<?php
				$tag_list = get_the_tag_list( '', ', ' );
				printf( __( 'Entry filed under: %1$s. Tags: %2$s.' ),
					get_the_category_list( ', ' ),
					$tag_list
				 );
			?>
		</p>

   </div>

	<p id="entrynavigation">
		<?php previous_post( '<span class="previous">%</span>','','yes' ); ?>
		<?php next_post( '<span class="next">%</span>','','yes' ); ?>
	</p>

<?php endwhile; ?>

<?php else : ?>

	<h2><?php _e( 'Not Found', 'blix' ); ?></h2>
	<p><?php _e( 'Sorry, but you are looking for something that isn&rsquo;t here.', 'blix' ); ?></p>

<?php endif; ?>

<?php comments_template(); ?>

</div> <!-- /content -->

<?php get_sidebar(); ?>

<?php get_footer(); ?>