* 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
18 lines
372 B
HTML
Executable File
18 lines
372 B
HTML
Executable File
{{ define "main" }}
|
|
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<ul class="text-center">
|
|
{{ range .RegularPages }}
|
|
<li class="m-3">
|
|
<a href="{{ .Permalink }}" class="text-text-dark block text-xl">
|
|
{{ .Title }}
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|