Files
car-t-t/template-parts/home/documents.php

14 lines
1002 B
PHP

<?php
/** Documentation support. @package Fragrance_Trade */
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! fragrance_trade_show_section( 'b2b_show_documents' ) ) {
return;
}
?>
<section id="documents" class="b2b-section documents-section">
<div class="container"><div class="row g-5"><div class="col-lg-5"><p class="section-eyebrow"><?php esc_html_e( '交付说明', 'fragrance-trade' ); ?></p><h2><?php echo esc_html( fragrance_trade_get_mod( 'b2b_documents_title' ) ); ?></h2><p class="section-lead"><?php echo esc_html( fragrance_trade_get_mod( 'b2b_documents_text' ) ); ?></p></div><div class="col-lg-7"><div class="document-grid"><?php for ( $index = 1; $index <= 4; $index++ ) : ?><article><span aria-hidden="true">✓</span><div><h3><?php echo esc_html( fragrance_trade_get_mod( 'b2b_document_' . $index . '_title' ) ); ?></h3><p><?php echo esc_html( fragrance_trade_get_mod( 'b2b_document_' . $index . '_text' ) ); ?></p></div></article><?php endfor; ?></div></div></div></div>
</section>