mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-27 22:14:22 +01:00
42 lines
No EOL
1.4 KiB
HTML
42 lines
No EOL
1.4 KiB
HTML
{{ define "main" }}
|
|
|
|
{{ partial "top_button.html" . }}
|
|
|
|
{{ partial "navigation.html" . }}
|
|
|
|
{{ partial "bradcrumb.html" . }}
|
|
|
|
{{"<!-- 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">
|
|
<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 }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "tagcloud.html" . }}
|
|
|
|
<div class="row masonry-grid" data-masonry='{ "percentPosition": true }'>
|
|
{{ $paginator := .Paginate .Data.Pages}}
|
|
{{ range $paginator.Pages }}
|
|
{{ .Render "article" }}
|
|
{{ end }}
|
|
|
|
<div class="col-12">
|
|
{{ template "_internal/pagination.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="/plugins/image-loaded/imagesloaded.pkgd.min.js"></script>
|
|
</section>
|
|
{{"<!-- /Blog Section -->" | safeHTML }}
|
|
|
|
{{ end }}
|
|
|