features.html: Center buttons

main
Abner Coimbre 2025-03-28 10:57:31 -07:00
parent 5eb0760ed6
commit 4ce8e994e2
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{{ define "main" }}
{{ partial "page-header" . }}
<div class="container">
<div class="row justify-center">
<div class="lg:col-10">
<div class="content">
{{ .Content }}
</div>
</div>
</div>
</div>
{{ end }}

View File

@ -109,10 +109,12 @@
</ul>
{{ with .button }}
{{ if .enable }}
<div class="flex justify-center items-center">
<a class="btn mt-6 {{ .class }}" href="{{ .link | absURL }}">
{{ .label }}
<i class="fa fa-arrow-right pl-2"></i>
</a>
</div>
{{ end }}
{{ end }}
</div>