Jamil-Abdullayev b8246597d4 Initial commit: orgsteklo WordPress theme
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
2026-03-05 00:48:06 +04:00

19 lines
453 B
PHP

<?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="page">
<div class="page-container container">
<h1><?php echo the_title(); ?></h1>
<div class="page-main">
<?php echo the_content(); ?>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>