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/suburbia/index.php
<?php
/**
 * @package Suburbia
 */
?>
<?php get_header(); ?>

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

	<?php while ( have_posts() ) : the_post(); ?>
		<div <?php post_class( 'grid one' ); ?>>
			<div class="featured-image">
				<?php if ( has_post_thumbnail() ) : ?>
					<div class="preview">
						<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'suburbia' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark">
							<?php
								if ( is_sticky() )
									the_post_thumbnail( 'suburbia-sticky' );
								else
									the_post_thumbnail( 'suburbia-thumbnail' );
							?>
						</a>
					</div>
				<?php endif; ?>
			</div><!-- .featured-image -->
			<h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'suburbia' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
			<?php the_excerpt(); ?>
			<div class="time">
				<?php if ( 'post' == get_post_type() ) :  ?>
					<?php
						if ( is_sticky() )
							_e( 'Featured', 'suburbia' );
						else
							the_time( get_option( 'date_format' ) );
					?>
				<?php endif; ?>
				<?php if ( comments_open() || ( '0' != get_comments_number() && ! comments_open() ) ) : ?>
					&middot; <?php comments_popup_link(
						__( 'Leave a Comment', 'suburbia' ),
						__( '1 Comment',       'suburbia' ),
						__( '% Comments',      'suburbia' )
					); ?>
				<?php endif; ?>
				<?php edit_post_link( __( 'Edit', 'suburbia' ), '&middot; <span class="edit-link">', '</span>' ); ?>
			</div><!-- .time -->
		</div><!-- #post-<?php the_ID(); ?> -->
	<?php endwhile; ?>

<?php else : ?>
	<div id="post-0" class="post no-results not-found">
		<div id="single">
			<h1><?php _e( 'This is somewhat embarrassing, isn&rsquo;t it?', 'suburbia' ); ?></h1>
			<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'suburbia' ); ?></p>
			<?php get_search_form(); ?>
		</div><!-- #single -->
	</div><!-- #post-0 -->
<?php endif; ?>


<div id="bottom-wrapper" class="clear">
	<?php get_template_part( 'sidebar-bottom' ); ?>
</div>

<?php get_footer(); ?>