motayeb/page.php
Kazem Alghasi f408faac54 build(theme): scaffold initial theme directory structure and assets
Initialize the base WordPress theme files, including core template
hierarchy (index, page, single, archive, 404), WooCommerce template
overrides, and essential asset directories.
2026-08-15 22:11:08 +03:30

20 lines
387 B
PHP

<?php
/**
* قالب برگه‌های ساده (سبد خرید، تسویه، و...)
*/
get_header();
?>
<main id="primary" class="pt-16 md:pt-[104px]">
<div class="max-w-7xl mx-auto px-4 md:px-6 py-8 md:py-12">
<?php
while ( have_posts() ) :
the_post();
the_content();
endwhile;
?>
</div>
</main>
<?php
get_footer();