ruạṛ
<?php /** * Default index template (fallback) */ get_header(); ?> <section class="section"> <div class="container"> <?php if (have_posts()): ?> <div class="section-header"> <h1> <?php wp_title(''); ?> </h1> </div> <?php while (have_posts()): the_post(); ?> <article style="margin-bottom:2rem;"> <h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h2> <?php the_excerpt(); ?> </article> <?php endwhile; ?> <?php else: ?> <div style="text-align:center;padding:4rem;"> <h2>Nothing found</h2> <p>Try browsing our <a href="<?php echo get_post_type_archive_link('product'); ?>">product catalogue</a>. </p> </div> <?php endif; ?> </div> </section> <?php get_footer(); ?>
cải xoăn