2024-03-27 12:24:18 +01:00
|
|
|
{{ define "main" }} {{ partial "page-header" . }}
|
2024-03-26 16:28:28 +01:00
|
|
|
|
2024-03-27 12:24:18 +01:00
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
{{ range .RegularPages }}
|
|
|
|
<div class="md:col-6 lg:col-4 mb-14">
|
|
|
|
{{ partial "components/author-card" . }}
|
2024-03-26 16:28:28 +01:00
|
|
|
</div>
|
2024-03-27 12:24:18 +01:00
|
|
|
{{ end }}
|
2024-03-26 16:28:28 +01:00
|
|
|
</div>
|
2024-03-27 12:24:18 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
2024-03-26 16:28:28 +01:00
|
|
|
{{ end }}
|