speedtech-website/layouts/blogibis/list.html

45 lines
1.3 KiB
HTML
Raw Normal View History

2024-10-04 11:58:15 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
{{ $Title := "Blog IBIS" }}
{{ partial "head.html" . }}
2025-05-14 18:03:13 +02:00
<body hx-boost="true" lang="{{ .Site.Language.Lang }}">
2024-10-04 11:58:15 +02:00
{{ partial "nav.html" . }}
<header class="blog">
<div class="container">
<div class="row">
2025-05-15 18:20:21 +02:00
<div class="col s12 m9 l9">
2024-10-04 11:58:15 +02:00
<h2><a href="{{ "blog/spot" | relLangURL }}">IBIS Blog</a></h2>
{{ partial "widgets/categoriesibis.html" . }}
</div>
</div>
</div>
</header>
2025-05-15 18:20:21 +02:00
<div id="page-content">
2024-10-04 11:58:15 +02:00
<div class="container">
<div class="row">
2025-05-15 18:20:21 +02:00
<div class="col l9 m9 s12">
2025-05-14 18:03:13 +02:00
<section class="col s12">
2024-10-04 11:58:15 +02:00
<div class="list-group">
{{ $paginator := .Paginate ((where .Pages "Type" "blogibis").ByParam "lastmod").Reverse}}
{{ range $paginator.Pages }}
2025-05-15 18:20:21 +02:00
{{ partial "partials/article-item.html" (dict "article" . "tags" "ibiscattags") }}
2024-10-04 11:58:15 +02:00
{{ end }}
2025-05-15 18:20:21 +02:00
</div>
2024-10-04 11:58:15 +02:00
2025-05-15 18:20:21 +02:00
{{ partial "partials/pagination.html" (dict "page" . "format" "default" "align" "center") }}
2024-10-04 11:58:15 +02:00
</section>
</div>
{{ partial "widgets/ibissidebar.html" . }}
</div>
</div>
</div>
<!-- /#content -->
{{ partial "footer.html" . }}
</body>
</html>