- 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
23 lines
617 B
PHP
23 lines
617 B
PHP
<?php
|
|
/**
|
|
* About the shop page template.
|
|
*
|
|
* @package Fragrance_Trade
|
|
*/
|
|
get_header();
|
|
?>
|
|
<main id="primary" class="site-main">
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
<article class="container py-5">
|
|
<header class="mb-4">
|
|
<h1><?php the_title(); ?></h1>
|
|
</header>
|
|
<div class="about-content"><?php the_content(); ?></div>
|
|
<div class="text-center mt-5">
|
|
<a href="<?php echo esc_url( home_url( '/contact/' ) ); ?>" class="btn btn-b2b-primary btn-lg"><?php esc_html_e( '预约到店', 'fragrance-trade' ); ?></a>
|
|
</div>
|
|
</article>
|
|
<?php endwhile; ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|