feat: initial commit - 汽车贴膜门店 WordPress 主题 (B2B Trade v2.0.0)
- WordPress classic theme for car tinting/foil shop - 13 homepage template parts - Customizer panel with 13 sections - RFQ inquiry form handler - Bootstrap 5.3 + AOS + Colorbox frontend - 13 SVG placeholder images - Chinese content defaults
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
/** Main fallback template. @package Fragrance_Trade */
|
||||
get_header();
|
||||
?>
|
||||
<main id="primary" class="site-main container py-5 fragrance-content-area">
|
||||
<?php if ( have_posts() ) : ?>
|
||||
<div class="row g-5">
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
<div class="col-12"><?php get_template_part( 'template-parts/content', get_post_type() ); ?></div>
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
<?php the_posts_pagination(); ?>
|
||||
<?php else : ?>
|
||||
<?php get_template_part( 'template-parts/content', 'none' ); ?>
|
||||
<?php endif; ?>
|
||||
</main>
|
||||
<?php get_footer(); ?>
|
||||
Reference in New Issue
Block a user