Files

30 lines
932 B
PHP

<?php
/**
* БИТ.WMS Child Theme — archive-event.php
*
* Archive template for the 'event' custom post type.
*
* @package bitwms-child
*/
defined( 'ABSPATH' ) || exit;
get_header();
?>
<main class="archive-page">
<div class="container">
<h1 class="archive-page__title"><?php esc_html_e( 'Мероприятия', 'bitwms-child' ); ?></h1>
<div class="content-grid">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'templates/content-card' ); ?>
<?php endwhile; ?>
<?php else : ?>
<p><?php esc_html_e( 'Мероприятия не найдены.', 'bitwms-child' ); ?></p>
<?php endif; ?>
</div>
<?php the_posts_pagination( array( 'prev_text' => '&larr;', 'next_text' => '&rarr;' ) ); ?>
</div>
</main>
<?php get_footer();