mirror of
https://github.com/chaoming/hugo-saasify-theme.git
synced 2025-04-20 05:41:52 +02:00
feat: use configurable column titles in footer
This commit is contained in:
parent
685ab65300
commit
afb5edb422
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
<!-- Column 1 -->
|
<!-- Column 1 -->
|
||||||
<div class="flex-1">
|
<div class="flex-1">
|
||||||
<h3 class="text-sm font-semibold uppercase tracking-wider text-gray-900 mb-4">PRODUCT</h3>
|
<h3 class="text-sm font-semibold uppercase tracking-wider text-gray-900 mb-4">{{ .Site.Params.footer.column_1_title }}</h3>
|
||||||
<ul class="space-y-2">
|
<ul class="space-y-2">
|
||||||
{{ range .Site.Menus.footer_column_1 }}
|
{{ range .Site.Menus.footer_column_1 }}
|
||||||
<li><a href="{{ .URL }}" class="text-gray-600 hover:text-primary-600">{{ .Name }}</a></li>
|
<li><a href="{{ .URL }}" class="text-gray-600 hover:text-primary-600">{{ .Name }}</a></li>
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
|
|
||||||
<!-- Column 2 -->
|
<!-- Column 2 -->
|
||||||
<div class="flex-1">
|
<div class="flex-1">
|
||||||
<h3 class="text-sm font-semibold uppercase tracking-wider text-gray-900 mb-4">COMPANY</h3>
|
<h3 class="text-sm font-semibold uppercase tracking-wider text-gray-900 mb-4">{{ .Site.Params.footer.column_2_title }}</h3>
|
||||||
<ul class="space-y-2">
|
<ul class="space-y-2">
|
||||||
{{ range .Site.Menus.footer_column_2 }}
|
{{ range .Site.Menus.footer_column_2 }}
|
||||||
<li><a href="{{ .URL }}" class="text-gray-600 hover:text-primary-600">{{ .Name }}</a></li>
|
<li><a href="{{ .URL }}" class="text-gray-600 hover:text-primary-600">{{ .Name }}</a></li>
|
||||||
|
|
Loading…
Add table
Reference in a new issue