gcg-website/layouts/projektwoche/list.html
Denys Konovalov 18a823cb6a cleanup templates:
- move out shared functions to shared templates
  - remove useless classes
  - simplify
  - various cleanups & enhancements
2023-07-24 12:02:51 +02:00

14 lines
243 B
HTML

{{ define "main" }}
<section class="section pb-0">
<div class="container">
<div class="row">
{{ range .Pages }}
{{ partial "card-btn-ni" (dict "title" .Title "link" .Permalink) }}
{{ end }}
</div>
</div>
</section>
{{ end }}