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

<div id="page">

	<div id="left">

		<?php if ( have_posts() ) : ?>
		<?php while ( have_posts() ) : the_post(); ?>
			<div class="post" id="post-<?php the_ID(); ?>">
				<h2 class="title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
				<div class="postcontent">
					<?php the_content( 'Read more&#8230;' ); ?>
					<?php wp_link_pages( 'before=<p class="link-pages">Pages: &after=</p>' ); ?>
				</div>
			</div><!-- /post -->

			<?php endwhile; ?>
			<?php else : ?>

			<div class="post">
				<h2 class="title">I'm sorry, I couldn't find it!</h2>
				<div class="postcontent">
					<p>Try <strong>a different search</strong>. You can browse the <strong>categories</strong> or <strong>archives</strong>.</p>
					<h3>Archives</h3>
					<ul class="browse">
						<?php wp_get_archives( 'type=monthly' ); ?>
					</ul>
					<h3>Categories</h3>
					<ul class="browse">
						<?php wp_list_categories( 'title_li=' ); ?>
					</ul>
				</div>
			</div><!-- /post -->

	<?php endif; ?>

	</div><!-- /left -->

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

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

<?php get_footer(); ?>