Initialize the base WordPress theme files, including core template hierarchy (index, page, single, archive, 404), WooCommerce template overrides, and essential asset directories.
36 lines
1.6 KiB
PHP
36 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* قالب پیشفرض (فallback)
|
|
* این فایل برای نمایش محتوا در مسیرهایی که تمپلیت خاصی تعریف نشده است استفاده میشود.
|
|
*/
|
|
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 if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
|
<article class="mb-8">
|
|
<h1 class="text-3xl md:text-4xl font-extrabold mb-6 text-earth-400 dark:text-dark-text"><?php the_title(); ?></h1>
|
|
<div class="prose max-w-none text-cream-500 dark:text-dark-muted leading-relaxed">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</article>
|
|
<?php endwhile;
|
|
|
|
the_posts_pagination( array(
|
|
'mid_size' => 2,
|
|
'prev_text' => '<iconify-icon icon="lucide:arrow-right" width="18"></iconify-icon>',
|
|
'next_text' => '<iconify-icon icon="lucide:arrow-left" width="18"></iconify-icon>',
|
|
) );
|
|
else : ?>
|
|
<div class="text-center py-20">
|
|
<iconify-icon icon="lucide:search-x" width="64" class="text-cream-300 dark:text-dark-muted mb-4"></iconify-icon>
|
|
<h3 class="text-xl font-bold mb-2">محتوایی یافت نشد</h3>
|
|
<p class="text-cream-500 dark:text-dark-muted">متأسفانه محتوایی در این قسمت یافت نشد.</p>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</main>
|
|
|
|
<?php get_footer(); ?>
|