<?php
/**
 * Archive Template
 *
 * @package Rifeng_Weifang
 */

get_header();
?>

<div class="page-header">
    <div class="container">
        <h1><?php the_archive_title(); ?></h1>
        <?php rf_breadcrumb(); ?>
    </div>
</div>

<section class="page-content">
    <div class="container">
        <?php if ( have_posts() ) : ?>
            <?php if ( get_the_archive_description() ) : ?>
                <div style="margin-bottom:32px;padding:20px;background:#f5f7fa;border-radius:8px;">
                    <?php the_archive_description(); ?>
                </div>
            <?php endif; ?>
            
            <div class="news-grid">
                <?php while ( have_posts() ) : the_post(); ?>
                    <article class="news-card">
                        <a href="<?php the_permalink(); ?>">
                            <?php if ( has_post_thumbnail() ) : ?>
                                <div class="card-image">
                                    <?php the_post_thumbnail( 'news-thumb' ); ?>
                                </div>
                            <?php else : ?>
                                <div class="card-image" style="background:linear-gradient(135deg,#0281cc 0%,#0066b3 100%);display:flex;align-items:center;justify-content:center;color:#fff;font-size:48px;height:200px;">
                                    📰
                                </div>
                            <?php endif; ?>
                            <div class="card-body">
                                <div class="card-date"><?php echo get_the_date( 'Y-m-d' ); ?></div>
                                <h3><?php the_title(); ?></h3>
                                <p><?php echo wp_trim_words( get_the_excerpt(), 25 ); ?></p>
                                <span class="read-more">阅读更多 →</span>
                            </div>
                        </a>
                    </article>
                <?php endwhile; ?>
            </div>
            
            <div style="text-align:center;margin-top:40px;">
                <?php
                the_posts_pagination( array(
                    'mid_size'  => 2,
                    'prev_text' => '← 上一页',
                    'next_text' => '下一页 →',
                ) );
                ?>
            </div>
        <?php else : ?>
            <div style="text-align:center;padding:60px 0;">
                <h2>暂无内容</h2>
                <p style="color:#999;margin-top:16px;">该分类下还没有文章。</p>
            </div>
        <?php endif; ?>
    </div>
</section>

<?php get_footer();
