45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
title = "Habar"
|
|
url = "/post/:id/:slug"
|
|
layout = "master"
|
|
is_hidden = 0
|
|
|
|
[blogPost]
|
|
id = "{{ :id }}"
|
|
categoryPage = 404
|
|
==
|
|
{% set post = blogPost.post %}
|
|
|
|
<div class="page-title-area page-title-img-two">
|
|
<div class="container">
|
|
<div class="page-title-item">
|
|
<h2>Habarlar</h2>
|
|
<ul>
|
|
<li>
|
|
<a href="/">Home</a>
|
|
</li>
|
|
<li>
|
|
<i class='bx bx-chevron-right'></i>
|
|
</li>
|
|
<li>{{post.title}}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="service-details-area pt-100 pb-70">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-9">
|
|
<div class="service-details-item">
|
|
<div class="service-details-fresh">
|
|
<h2>{{post.title}}</h2>
|
|
<h5 style="color:#7b7b7b;">{{ post.published_at|date('d.m.Y') }}</h5>
|
|
<img src="{{ post.featured_images[0].thumb(467,300,{'mode':'crop'}) }}" alt="{{ image.description }}" style="margin-top: 30px;width: 100%;">
|
|
<p>{{ post.content_html|raw }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |