Files
car-t-t/page-about.php
T
zhs123 43272d25eb refactor: 死代码清理 + CDN SRI 加固 + 面包屑组件 + 代码规范文档
- 删除 7 个死模板文件 (products/services/quality/process/projects/customization/rfq)
- 删除 13 个旧图片素材 (jpg/png/webp)
- 新增 CDN SRI 完整性校验 (Bootstrap CSS/JS)
- 新增面包屑导航模板组件
- 新增代码清理方案与代码审查标准文档
- 更新 README.md
2026-07-24 17:48:00 +08:00

93 lines
2.3 KiB
PHP

<?php
/**
* Template Name: 关于门店
* About the shop page — intro, environment, video, guarantees.
*
* @package Fragrance_Trade
*/
get_header();
?>
<main id="primary" class="site-main">
<?php
/* ---- 0. Breadcrumb ---- */
?>
<div class="page-content container">
<?php
get_template_part(
'template-parts/breadcrumb',
null,
array(
'items' => array(
array( 'label' => __( '首页', 'fragrance-trade' ), 'url' => home_url( '/' ) ),
array( 'label' => __( '关于门店', 'fragrance-trade' ), 'url' => null ),
),
)
);
?>
</div>
<?php
/* ---- 1. 门店介绍(页面编辑器内容) ---- */
while ( have_posts() ) :
the_post();
?>
<section class="b2b-section about-intro">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 col-xl-7">
<div class="section-heading text-center mx-auto mb-4">
<p class="section-eyebrow"><?php esc_html_e( '关于我们', 'fragrance-trade' ); ?></p>
<h1><?php the_title(); ?></h1>
</div>
<div class="about-content"><?php the_content(); ?></div>
</div>
</div>
</div>
</section>
<?php
endwhile;
?>
<?php
/* ---- 2. 信任要点 ---- */
get_template_part( 'template-parts/home/trust' );
?>
<?php
/* ---- 3. 门店环境 ---- */
get_template_part( 'template-parts/home/factory' );
?>
<?php
/* ---- 4. 施工流程视频(如果启用了且有视频) ---- */
if ( fragrance_trade_show_section( 'b2b_show_video' ) ) :
get_template_part( 'template-parts/home/video' );
endif;
?>
<?php
/* ---- 5. 服务保障 ---- */
if ( fragrance_trade_show_section( 'b2b_show_documents' ) ) :
get_template_part( 'template-parts/home/documents' );
endif;
?>
<?php
/* ---- 6. CTA ---- */
?>
<section class="b2b-section about-cta text-center">
<div class="container">
<h2><?php esc_html_e( '来店里看看?', 'fragrance-trade' ); ?></h2>
<p class="section-lead mx-auto"><?php esc_html_e( '欢迎到店看实物色卡、施工样板,我们的顾问为您提供一对一咨询服务。', 'fragrance-trade' ); ?></p>
<a href="<?php echo esc_url( home_url( '/contact/' ) ); ?>" class="btn btn-b2b-primary btn-lg mt-3">
<?php esc_html_e( '预约到店', 'fragrance-trade' ); ?>
</a>
</div>
</section>
</main>
<?php get_footer(); ?>