28 lines
970 B
HTML
28 lines
970 B
HTML
|
{{ if gt (where site.RegularPages "Section" "==" "blog") 0}}
|
||
|
{{"<!-- Start Blog Section -->" | safeHTML}}
|
||
|
<section id="blog" class="section">
|
||
|
<div class="container">
|
||
|
<div class="row justify-content-center">
|
||
|
<div class="col-lg-12">
|
||
|
{{"<!-- 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>
|
||
|
<div class="border-meghna"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{"<!-- /section title -->" | safeHTML}}
|
||
|
|
||
|
{{ 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 }}">{{ i18n "viewAllPost" }}</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
{{"<!-- /blog -->" | safeHTML}}
|
||
|
{{ end }}
|