* replace Bootstrap-based styling with Tailwind CSS * update theme compatibility for latest Hugo version * refactor templates and partials * fix outdated code and broken components * improve project structure and maintainability * optimize styling and frontend build setup
20 lines
458 B
HTML
Executable File
20 lines
458 B
HTML
Executable File
{{ define "main" }}
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<div class="row gx-5">
|
|
<!-- posts for this term -->
|
|
<div class="lg:col-8">
|
|
<div class="row">
|
|
{{ range .Data.Pages }}
|
|
<div class="md:col-6 mb-14">
|
|
{{ partial "components/blog-card" . }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|