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/spectrum/single.php
<?php
/**
 * @package WordPress
 * @subpackage Spectrum
 */

get_header(); ?>

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

		<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
			<div class="main-title">
				<h3><?php the_title(); ?><?php edit_post_link( __( 'Edit', 'spectrum' ) ); ?></h3>
				<div class="post-date">
					<?php spectrum_date(); ?>
				</div>
			</div>
			<div class="post-meta post-author-and-comments">
				<p class="post-author"><?php printf( __( 'Written by <strong>%1$s</strong>', 'spectrum' ), get_the_author() ); ?></p>
				<p class="comment-number"><?php comments_popup_link( __( 'Leave a comment', 'spectrum' ), __( '<strong>1</strong> Comment', 'spectrum' ), __( '<strong>%</strong> Comments', 'spectrum' ) ); ?></p>
			</div>
			<div class="entry">
				<?php the_content( 'Read the rest of this entry &raquo;' ); ?>
				<?php wp_link_pages( array( 'before' => '<p>Page: ', 'after' => '</p>', 'next_or_number' => 'number' ) ); ?>
			</div>
			<div class="post-meta post-category">
				<p class="post-category-title"><strong><?php _e( 'Category:', 'spectrum' ); ?></strong></p>
				<p class="post-category-elements"><?php the_category( ', ' ); ?></p>
			</div>
			<?php the_tags( '<div class="post-meta post-tags"><p><strong>' . __('Tagged with:', 'spectrum') . '</strong></p><ul><li>','</li><li>','</li></ul></div>' ); ?>
			<div class="post-meta post-nav">
				<p class="prev-post"><?php previous_post_link( '<strong>%link</strong>' ); ?></p>
				<p class="next-post"><?php next_post_link( '<strong>%link</strong>' ); ?></p>
			</div>
		</div>

	<?php comments_template(); ?>

	<?php endwhile; else: ?>

	<h3><?php _e( 'Not Found', 'spectrum' ); ?></h3>
	<p><?php _e( 'Sorry, no posts matched your criteria.', 'spectrum' ); ?></p>

	<?php endif; ?>

	</div>

<?php get_sidebar(); ?>
<?php get_footer(); ?>