WP_Template/kankys-theme/index.php

40 lines
1.1 KiB
PHP
Raw Normal View History

2024-08-30 14:22:44 +00:00
<?php get_header(); ?>
<div id="primary" class="content-area col-8">
<main id="main" class="site-main" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<h2 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</header>
<div class="post-content">
<?php echo the_excerpt();?>
</div>
</div>
<?php
endwhile;
else:
?>
<div id="post-0" class="post error404 not-found">
<header>
<h1 class="entry-title"><?php _e( 'Not Found', 'theme' ); ?></h1>
</header>
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'theme' ); ?></p>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
<?php endif; ?>
</main>
</div>
<div class="col-4">
<?php get_sidebar(); ?>
</div>
<?php get_footer();