Custom WooCommerce theme for orgsteklo.ru including: - Product catalog with category/subcategory hierarchy - Custom checkout with delivery calculation - Price calculator - Admin settings panel - Search functionality - User account pages
23 lines
585 B
PHP
23 lines
585 B
PHP
<!--
|
|
Template Name: Шаблон Доставка
|
|
-->
|
|
<?php get_header(); ?>
|
|
<main>
|
|
<nav class="breadcumbs container">
|
|
<ul>
|
|
<li><a href="/">Главная</a></li>
|
|
<li><p class="breadcumbs-separator">/</p></li>
|
|
<li><p><?php echo the_title(); ?></p></li>
|
|
</ul>
|
|
</nav>
|
|
<section class="payment delivery">
|
|
<div class="payment-container container">
|
|
<h1><?php echo the_title(); ?></h1>
|
|
<div class="payment-main">
|
|
<?php echo the_content(); ?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<?php get_template_part( 'blocks/block', 'consult' ); ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|