33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<article class="item post col-md-6">
|
|
<div class="card">
|
|
<figure class="card-img-top overlay overlay-1 hover-scale"><a href="#"> <img src="<?=$blog_image?>" alt="" /></a>
|
|
<figcaption>
|
|
<h5 class="from-top mb-0">Read More</h5>
|
|
</figcaption>
|
|
</figure>
|
|
<div class="card-body">
|
|
<div class="post-header">
|
|
<div class="post-category text-line">
|
|
<a href="<?=$blog_link?>" class="hover" rel="category">ChiefSoft</a>
|
|
</div>
|
|
<!-- /.post-category -->
|
|
<h2 class="post-title h3 mt-1 mb-3"><a class="link-dark" href="<?=$blog_link?>"><?=$title?></a></h2>
|
|
</div>
|
|
<!-- /.post-header -->
|
|
<div class="post-content">
|
|
<p><?php echo $content; ?></p>
|
|
</div>
|
|
<!-- /.post-content -->
|
|
</div>
|
|
<!--/.card-body -->
|
|
<div class="card-footer">
|
|
<ul class="post-meta d-flex mb-0">
|
|
<li class="post-date"><i class="uil uil-calendar-alt"></i><span><?=$post_date?></span></li>
|
|
<li class="post-comments"><a href="#"><i class="uil uil-comment"></i><?=$comment_count?></a></li>
|
|
</ul>
|
|
<!-- /.post-meta -->
|
|
</div>
|
|
<!-- /.card-footer -->
|
|
</div>
|
|
<!-- /.card -->
|
|
</article>
|