2021-07-21 20:05:12 +02:00
|
|
|
{{ if gt site.RegularPages 0}}
|
|
|
|
{{"<!-- Blog Section -->" | safeHTML}}
|
|
|
|
<section id="blog" class="section">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
{{"<!-- Start Section Title -->" | safeHTML}}
|
|
|
|
<div class="title text-center wow fadeInDown">
|
|
|
|
<h2> {{ with i18n "blogTitle" }} {{ index (split . " ") 0 | safeHTML }} {{ end }}<span class="color">
|
|
|
|
{{ with i18n "blogTitle" }} {{ index (split . " ") 1 | safeHTML }} {{ end }} </span></h2>
|
2022-10-14 16:10:28 +02:00
|
|
|
<div class="border-Rinkusu"></div>
|
2021-07-21 20:05:12 +02:00
|
|
|
</div>
|
|
|
|
{{"<!-- End Section Title -->" | safeHTML}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ range first 3 (where site.RegularPages "Section" "==" "blog")}}
|
|
|
|
{{ .Render "article"}}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<div class="all-post text-center col-lg-12">
|
|
|
|
<a class="btn btn-main" href="{{ `blog` | absLangURL }}">{{ "view All Post" }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{"<!-- /Blog Section -->" | safeHTML}}
|
|
|
|
{{ end }}
|