| Server IP : 14.225.216.240 / Your IP : 216.73.216.26 Web Server : nginx/1.20.1 System : Linux localhost.localdomain 5.14.0-596.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jun 27 16:02:33 UTC 2025 x86_64 User : taidh ( 1001) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/taidh/papacafe.vn/wp-content/themes/papacafe/ |
Upload File : |
<?php
get_header();
if (have_posts()) :
while (have_posts()) : the_post();
?>
<section class="blog-details pb-130">
<div class="container">
<div class="row gy-5">
<div class="col-lg-8 col-md-12">
<div class="blog-details-wrap">
<div class="blog-details-img">
<img src="<?php echo get_the_post_thumbnail_url(); ?>" alt="<?php the_title(); ?>" loading="lazy">
</div>
<div class="blog-details-content-wrap">
<ul class="post-meta">
<li><i class="fa-sharp fa-regular fa-clock"></i><?php echo get_the_date(); ?></li>
<li><i class="fa-light fa-user"></i><?php the_author(); ?></li>
</ul>
<div class="blog-details-content">
<h2 class="details-title mb-25"><?php the_title(); ?></h2>
<p><?php the_content(); ?></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</section>
<?php
endwhile;
endif;
get_footer();
?>