Antichrist Engine Index
**Site relevance:** Anti-Christ.org
**Memory type:** theme source memory
**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/index.php
**Size:** 0.9 KB
Summary
Fallback index template.
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Fallback index template.
*
* @package Antichrist_Engine
*/
get_header();
?>
<section class="section section--narrow">
<div class="container content-with-sidebar">
<div class="content-primary">
<?php antichrist_engine_archive_intro(); ?>
<?php if (have_posts()) : ?>
<div class="post-grid">
<?php
while (have_posts()) :
the_post();
get_template_part('template-parts/content', 'excerpt');
endwhile;
?>
</div>
<?php the_posts_pagination(); ?>
<?php else : ?>
<?php antichrist_engine_publication_empty_state('archive'); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
</section>
<?php
get_footer();