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/martyknows.com/wp-content/themes/light/search.php
<?php
get_header();
?>

<div id="content">
<h2 class="archives"><?php _e('Search results'); ?></h2>

  <?php if (have_posts()) : ?>
	<?php while (have_posts()) : the_post(); ?>
  	<div <?php post_class( 'entry' ); ?>>
    <p><strong> <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></strong> </p>
	  <div class="entrymeta">
		<?php the_time(get_option('date_format'));?>
	</div>
  </div>
  <?php endwhile; else: ?>
  <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>

  <?php endif; ?>
	<div class="navigation nav-posts">
		<div class="alignleft"><?php next_posts_link( '<span>&laquo; Older Entries</span>' ); ?></div>
		<div class="alignright"><?php previous_posts_link( '<span>Newer Entries &raquo;</span>' ); ?></div>
	</div><!-- /navigation -->
</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>