43 lines
No EOL
1.3 KiB
HTML
43 lines
No EOL
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
<body hx-boost="true" lang="{{ .Site.Language.Lang }}">
|
|
{{ partial "nav.html" . }}
|
|
|
|
<header class="service">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col s12 m9 l9">
|
|
<h2><a href="{{ "blog/ibis" | 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 s12 m9 l9">
|
|
<section>
|
|
<div class="list-group">
|
|
{{ $paginator := .Paginate ((where .Pages "Type" "blogibis").ByParam "LastmodDate")}}
|
|
{{ range $paginator.Pages }}
|
|
{{ partial "partials/article-item.html" (dict "article" . "tags" "ibiscattags") }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ partial "partials/pagination.html" (dict "page" . "format" "default" "align" "center") }}
|
|
|
|
</section>
|
|
</div>
|
|
{{ partial "partials/widgets/ibissidebar.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /#content -->
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html> |