71 lines
3.0 KiB
PHP
71 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Standalone checkout template styled like the test1 landing page.
|
|
*
|
|
* @package Twenty_Twenty_Four
|
|
* @since Twenty Twenty-Four 1.0
|
|
*/
|
|
|
|
?><!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
<body <?php body_class( 'test1-checkout-page' ); ?>>
|
|
<?php wp_body_open(); ?>
|
|
<?php
|
|
$test1_header_action_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : '';
|
|
$test1_header_action_label = 'Корзина';
|
|
require get_theme_file_path( 'template-parts/test1-shared-header.php' );
|
|
?>
|
|
|
|
<main id="top">
|
|
<section class="hero checkout-hero">
|
|
<div class="container">
|
|
<div class="premium-stage premium-stage-checkout">
|
|
<div class="premium-orb premium-orb-one" aria-hidden="true"></div>
|
|
<div class="premium-orb premium-orb-two" aria-hidden="true"></div>
|
|
<?php twentytwentyfour_water_delivery_progress_markup( 'checkout' ); ?>
|
|
<div class="checkout-shell">
|
|
<div class="hero-copy checkout-intro reveal">
|
|
<span class="eyebrow"><?php esc_html_e( 'Финальный шаг', 'twentytwentyfour' ); ?></span>
|
|
<h1 class="hero-title"><?php esc_html_e( 'Оформление заказа', 'twentytwentyfour' ); ?> <span><?php esc_html_e( 'на доставку воды в Севастополе', 'twentytwentyfour' ); ?></span></h1>
|
|
<p class="hero-text"><?php esc_html_e( 'Проверьте состав заказа, укажите телефон и адрес доставки, чтобы быстро оформить воду на дом, в офис, кафе или коммерческое помещение в Севастополе. Мы принимаем заявки ежедневно и подтверждаем удобный интервал доставки.', 'twentytwentyfour' ); ?></p>
|
|
|
|
<div class="hero-actions">
|
|
<?php if ( function_exists( 'wc_get_cart_url' ) ) : ?>
|
|
<a class="ghost-button" href="<?php echo esc_url( wc_get_cart_url() ); ?>"><?php esc_html_e( 'Изменить состав заказа', 'twentytwentyfour' ); ?></a>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="premium-stack reveal reveal-delay-1">
|
|
<div class="glass-card checkout-card premium-form-card">
|
|
<?php
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
the_content();
|
|
endwhile;
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="water-seo-copy-section water-seo-copy-section-checkout">
|
|
<div class="container">
|
|
<h2><?php esc_html_e( 'Оформить заказ воды в Севастополе онлайн', 'twentytwentyfour' ); ?></h2>
|
|
<p><?php echo esc_html( twentytwentyfour_water_delivery_seo_copy( 'checkout' ) ); ?></p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<?php require get_theme_file_path( 'template-parts/test1-shared-footer.php' ); ?>
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|