42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
{{ $Title := "Blog IBIS" }}
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
<body hx-boost="true" lang="{{ .Site.Language.Lang }}">
|
|
{{ partial "nav.html" . }}
|
|
|
|
<header class="blog">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col s12 m9 l9">
|
|
<h2><a href="{{ "blog/spot" | relLangURL }}">IBIS Blog</a></h2>
|
|
{{ partial "widgets/categoriesibis.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div id="page-content">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col l9 m9 s12">
|
|
<div class="list-group">
|
|
{{ $paginator := .Paginate ((where .Pages "Type" "blogibis").ByParam "lastmod").Reverse}}
|
|
{{ range $paginator.Pages }}
|
|
{{ partial "partials/article-item.html" (dict "article" . "tags" "ibiscattags") }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ partial "partials/pagination.html" (dict "page" . "format" "default" "align" "center") }}
|
|
|
|
</div>
|
|
{{ partial "widgets/ibissidebar.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /#content -->
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html>
|