Rinkusu/layouts/_default/list.html

42 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2021-07-20 15:23:30 +00:00
{{ define "main" }}
{{ partial "top_button.html" . }}
2021-07-20 15:23:30 +00:00
{{ partial "navigation.html" . }}
2021-09-23 13:20:30 +00:00
{{ partial "bradcrumb.html" . }}
2021-07-20 15:23:30 +00:00
{{"<!-- Blog Section -->" | safeHTML }}
<section id="blog" class="section">
<div class="container">
<div class="row">
<div class="col-12">
{{"<!-- Section Title -->" | safeHTML }}
<div class="title text-center wow fadeInDown">
2021-07-20 15:23:30 +00:00
<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-Rinkusu"></div>
</div>
{{"<!-- /Section Title -->" | safeHTML }}
2021-07-20 15:23:30 +00:00
</div>
</div>
{{ partial "tagcloud.html" . }}
<div class="row masonry-grid" data-masonry='{ "percentPosition": true }'>
2021-07-20 15:23:30 +00:00
{{ $paginator := .Paginate .Data.Pages}}
{{ range $paginator.Pages }}
{{ .Render "article" }}
2021-07-20 15:23:30 +00:00
{{ end }}
2021-07-20 15:23:30 +00:00
<div class="col-12">
{{ template "_internal/pagination.html" . }}
</div>
</div>
</div>
<script src="/plugins/image-loaded/imagesloaded.pkgd.min.js"></script>
2021-07-20 15:23:30 +00:00
</section>
{{"<!-- /Blog Section -->" | safeHTML }}
{{ end }}