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/neutra/category.php
<?php
/**
 * @package WordPress
 * @subpackage Neutra
 */
get_header(); ?>

<div id="page">

	<div id="left">
		<?php if ( have_posts() ) : ?>

		<h2 class="title">
			<?php printf( __( 'Category: <strong>%1$s</strong>', 'neutra' ), single_cat_title( '', false ) ); ?>
		</h2>

		<?php while ( have_posts() ) : the_post(); ?>
			<div class="results">
				<h4><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4>
			</div>

			<?php endwhile; ?>

			<div class="navigation">
				<div class="old-posts alignleft"><?php next_posts_link( __( '&laquo; Older posts', 'neutra' ) ); ?></div>
				<div class="new-posts alignright"><?php previous_posts_link( __( 'Newer posts &raquo;', 'neutra' ) ); ?></div>
			</div><!-- /navigation -->

			<?php else : ?>

			<div class="post">
				<h2 class="title"><?php _e( 'I&rsquo;m sorry, there&rsquo;s no category!', 'neutra' ); ?></h2>
				<div class="postcontent">
					<p><?php _e( 'Don&rsquo;t worry, you can always <strong>search the blog</strong> or browse the <strong>categories</strong>.' ); ?></p>
				</div>
			</div><!-- /post -->

		<?php endif; ?>
	</div><!-- /left -->

	<div id="right">
		<?php get_sidebar(); ?>
	</div><!-- /right -->

</div><!-- /page -->

<?php get_footer(); ?>