45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
[viewBag]
|
|
|
|
[blogPosts]
|
|
pageNumber = "{{ :page }}"
|
|
postsPerPage = 3
|
|
noPostsMessage = "No posts found"
|
|
sortOrder = "published_at desc"
|
|
categoryPage = 404
|
|
postPage = "habar"
|
|
==
|
|
{% set posts = blogPosts.posts %}
|
|
|
|
<section class="blog-area ptb-100">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>Habarlar</h2>
|
|
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do tempor incididunt ut labore et dolore
|
|
magna aliqua.</p> -->
|
|
</div>
|
|
<div class="row">
|
|
|
|
{% for post in posts %}
|
|
<div class="col-sm-6 col-lg-4">
|
|
<div class="blog-item">
|
|
<div class="blog-top">
|
|
<a href="{{ post.url }}">
|
|
<img src="{{ post.featured_images[0].thumb(467,300,{'mode':'crop'}) }}" alt="Blog">
|
|
</a>
|
|
<span>{{ post.published_at|date('d.m.Y') }}</span>
|
|
</div>
|
|
<div class="blog-bottom">
|
|
<h3>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</h3>
|
|
<p>{{ post.excerpt }}</p>
|
|
<a class="cmn-btn" href="{{ post.url }}">Read More</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</section> |