12345678910111213141516171819202122232425262728 |
- {{ if gt site.RegularPages 0}}
- {{"<!-- Start Blog Section -->" | safeHTML}}
- <section id="blog" class="section">
- <img class="lozad" style="display: none;" onerror="this.onerror=null;this.parentElement.style.backgroundImage= 'url(images/writing.jpg)'" data-src="images/writing.webp" />
- <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 }}
|