mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-27 23:34:24 +01:00
Added list.html
This commit is contained in:
parent
d00eb69452
commit
8432b6ce5c
1 changed files with 30 additions and 0 deletions
30
layouts/_default/list.html
Normal file
30
layouts/_default/list.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
{{ define "main" }}
|
||||
|
||||
{{ partial "navigation.html" . }}
|
||||
|
||||
{{"<!-- Blog Section -->" | safeHTML }}
|
||||
<section id="blog" class="section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
{{"<!-- Section Title -->" | safeHTML }}
|
||||
<dir 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-BioTech"></div>
|
||||
</dir>
|
||||
</div>
|
||||
{{"<!-- Section Title -->" | safeHTML }}
|
||||
{{ $paginator := .Paginate .Data.Pages}}
|
||||
{{ range $paginator.Pages }}
|
||||
{{ .Render "article" }}
|
||||
{{ end }}
|
||||
<div class="col-12">
|
||||
{{ template "_internal/pagination.html" . }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{"<!-- /Blog Section -->" | safeHTML }}
|
||||
|
||||
{{ end }}
|
Loading…
Reference in a new issue