feat(footer): add configurable footer menu (#197)

main
Óscar Fernández 1 year ago committed by GitHub
parent 450501e218
commit 1bc52944c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -154,7 +154,6 @@ menu = [
{ name = "archive", url = "archive", trailing_slash = true }, { name = "archive", url = "archive", trailing_slash = true },
{ name = "tags", url = "tags", trailing_slash = true }, { name = "tags", url = "tags", trailing_slash = true },
{ name = "projects", url = "projects", trailing_slash = true }, { name = "projects", url = "projects", trailing_slash = true },
{ name = "about", url = "about", trailing_slash = true },
] ]
# The RSS icon will be shown if (1) it's enabled and (2) the following variable is set to true. # The RSS icon will be shown if (1) it's enabled and (2) the following variable is set to true.
@ -181,6 +180,13 @@ socials = [
{ name = "spotify", url = "https://open.spotify.com/artist/5Hv2bYBhMp1lUHFri06xkE", icon = "spotify" }, { name = "spotify", url = "https://open.spotify.com/artist/5Hv2bYBhMp1lUHFri06xkE", icon = "spotify" },
] ]
# Extra menu to show on the footer, below socials section.
footer_menu = [
{url = "about", name = "about", trailing_slash = true},
# {url = "privacy", name = "privacy", trailing_slash = true},
{url = "sitemap.xml", name = "sitemap", trailing_slash = false},
]
# Enable a copyright notice for the footer, shown between socials and the "Powered by" text. # Enable a copyright notice for the footer, shown between socials and the "Powered by" text.
# You can use $CURRENT_YEAR to automatically insert the current year. # You can use $CURRENT_YEAR to automatically insert the current year.
# $SEPARATOR will be replaced by the `separator` variable. # $SEPARATOR will be replaced by the `separator` variable.

@ -1,7 +1,7 @@
+++ +++
title = "Domina la configuració de tabi: guia completa" title = "Domina la configuració de tabi: guia completa"
date = 2023-09-18 date = 2023-09-18
updated = 2023-09-29 updated = 2023-10-05
description = "Descobreix les múltiples maneres en què pots personalitzar tabi." description = "Descobreix les múltiples maneres en què pots personalitzar tabi."
[taxonomies] [taxonomies]
@ -458,7 +458,7 @@ Llegeix la [documentació](/ca/blog/comments/) per a més informació sobre els
### Anàlisi web ### Anàlisi web
| Pàgina | Secció | `config.toml` | Segueix Jerarquia | Requereix JavaScript | | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:-----------------:|:--------------------:| |:------:|:-------:|:-------------:|:-----------------:|:--------------------:|
| ❌ | ❌ | ✅ | ❌ | ✅ | | ❌ | ❌ | ✅ | ❌ | ✅ |
@ -513,19 +513,31 @@ Le icones provenen de Font Awesome. Per veure una llista de tots els icones disp
### Icona de feed ### Icona de feed
| Pàgina | Secció | `config.toml` | Respecta la jerarquia | Requereix JavaScript | | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:---------------------:|:-------------------:| |:------:|:-------:|:-------------:|:---------------------:|:-------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ | | ❌ | ❌ | ✅ | ❌ | ❌ |
Pots afegir un enllaç al teu feed RSS/Atom al peu de pàgina amb `feed_icon = true`. Pots afegir un enllaç al teu feed RSS/Atom al peu de pàgina amb `feed_icon = true`.
--- #### Menú de peu de pàgina
## Metadades | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:-----------------:|:--------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ |
Pots afegir un menú al peu de pàgina amb `footer_menu`, que accepta una llista d'elements de menú. Per exemple:
```toml
footer_menu = [
{url = "about", name = "about", trailing_slash = true},
{url = "privacy", name = "privacy", trailing_slash = true},
{url = "sitemap.xml", name = "sitemap", trailing_slash = false},
]
```
### Copyright ### Copyright
| Pàgina | Secció | `config.toml` | Respecta la jerarquia | Requereix JavaScript | | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:---------------------:|:-------------------:| |:------:|:-------:|:-------------:|:---------------------:|:-------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ | | ❌ | ❌ | ✅ | ❌ | ❌ |
@ -544,9 +556,13 @@ Si tens un lloc multilingüe i vols establir diferents notificacions de drets d'
1. Configura `translate_copyright = true` a `config.toml`. 1. Configura `translate_copyright = true` a `config.toml`.
2. Afegeix una clau `copyright` als arxius `i18n`. Consulta la [documentació](/ca/blog/faq-languages/#com-puc-personalitzar-o-sobreescriure-una-cadena-de-text-específica-al-meu-lloc-web). 2. Afegeix una clau `copyright` als arxius `i18n`. Consulta la [documentació](/ca/blog/faq-languages/#com-puc-personalitzar-o-sobreescriure-una-cadena-de-text-específica-al-meu-lloc-web).
---
## Metadades
### Temps de lectura ### Temps de lectura
| Pàgina | Secció | `config.toml` | Respecta la jerarquia | Requereix JavaScript | | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:---------------------:|:-------------------:| |:------:|:-------:|:-------------:|:---------------------:|:-------------------:|
| ✅ | ✅ | ✅ | ✅ | ❌ | | ✅ | ✅ | ✅ | ✅ | ❌ |
@ -558,7 +574,7 @@ Com que segueix [la jerarquia](#jerarquia-de-configuracio), pots activar-lo o de
### Format de data ### Format de data
| Pàgina | Secció | `config.toml` | Respecta la jerarquia | Requereix JavaScript | | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:---------------------:|:-------------------:| |:------:|:-------:|:-------------:|:---------------------:|:-------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ | | ❌ | ❌ | ✅ | ❌ | ❌ |
@ -570,7 +586,7 @@ A Zola, la sintaxi per al format de temps està inspirada en strftime. Una refer
### Separador personalitzat ### Separador personalitzat
| Pàgina | Secció | `config.toml` | Respecta la jerarquia | Requereix JavaScript | | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:---------------------:|:-------------------:| |:------:|:-------:|:-------------:|:---------------------:|:-------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ | | ❌ | ❌ | ✅ | ❌ | ❌ |
@ -580,7 +596,7 @@ El separador per defecte és un punt de llista (`•`), però pots canviar-lo co
### Ordre del títol ### Ordre del títol
| Pàgina | Secció | `config.toml` | Respecta la jerarquia | Requereix JavaScript | | Pàgina | Secció | `config.toml` | Segueix la jerarquia | Requereix JavaScript |
|:------:|:-------:|:-------------:|:---------------------:|:-------------------:| |:------:|:-------:|:-------------:|:---------------------:|:-------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ | | ❌ | ❌ | ✅ | ❌ | ❌ |

@ -1,7 +1,7 @@
+++ +++
title = "Domina la configuración de tabi: guía completa" title = "Domina la configuración de tabi: guía completa"
date = 2023-09-18 date = 2023-09-18
updated = 2023-09-29 updated = 2023-10-05
description = "Descubre las múltiples maneras en que puedes personalizar tabi." description = "Descubre las múltiples maneras en que puedes personalizar tabi."
[taxonomies] [taxonomies]
@ -487,7 +487,7 @@ self_hosted_url = ""
--- ---
## Iconos en el pie de página ## Pie de página
### Iconos de redes sociales ### Iconos de redes sociales
@ -517,9 +517,21 @@ Los iconos provienen de Font Awesome. Para ver una lista de todos los iconos dis
Puedes añadir un enlace a tu feed RSS/Atom en el pie de página con `feed_icon = true`. Puedes añadir un enlace a tu feed RSS/Atom en el pie de página con `feed_icon = true`.
--- ### Menú de pie de página
## Metadatos | Página | Sección | `config.toml` | Respeta jerarquía | Requiere JavaScript |
|:------:|:-------:|:-------------:|:---------------:|:------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ |
Puedes añadir un menú al pie de página con `footer_menu`, que acepta una lista de elementos de menú. Por ejemplo:
```toml
footer_menu = [
{url = "about", name = "about", trailing_slash = true},
{url = "privacy", name = "privacy", trailing_slash = true},
{url = "sitemap.xml", name = "sitemap", trailing_slash = false},
]
```
### Copyright ### Copyright
@ -542,6 +554,10 @@ Si tienes un sitio multilingüe y deseas establecer diferentes notificaciones de
1. Configura `translate_copyright = true` en `config.toml`. 1. Configura `translate_copyright = true` en `config.toml`.
2. Añade una clave `copyright` a los archivos `i18n`. Consulta la [documentación](/es/blog/faq-languages/#cómo-personalizo-o-sobrescribo-una-cadena-de-texto-específica-en-mi-sitio-web). 2. Añade una clave `copyright` a los archivos `i18n`. Consulta la [documentación](/es/blog/faq-languages/#cómo-personalizo-o-sobrescribo-una-cadena-de-texto-específica-en-mi-sitio-web).
---
## Metadatos
### Tiempo de lectura ### Tiempo de lectura
| Página | Sección | `config.toml` | Respeta jerarquía | Requiere JavaScript | | Página | Sección | `config.toml` | Respeta jerarquía | Requiere JavaScript |

@ -1,7 +1,7 @@
+++ +++
title = "Mastering tabi Settings: A Comprehensive Guide" title = "Mastering tabi Settings: A Comprehensive Guide"
date = 2023-09-18 date = 2023-09-18
updated = 2023-09-29 updated = 2023-10-05
description = "Discover the many ways you can customise your tabi site." description = "Discover the many ways you can customise your tabi site."
[taxonomies] [taxonomies]
@ -491,7 +491,7 @@ self_hosted_url = ""
--- ---
## Footer Icons ## Footer
### Social Media Icons ### Social Media Icons
@ -521,9 +521,21 @@ The icons are from Font Awesome. To see a list of all the available icons, take
You can add a link to your RSS/Atom feed to the footer with `feed_icon = true`. You can add a link to your RSS/Atom feed to the footer with `feed_icon = true`.
--- ### Footer Menu
## Metadata | Page | Section | `config.toml` | Follows Hierarchy | Requires JavaScript |
|:----:|:-------:|:-------------:|:-----------------:|:-------------------:|
| ❌ | ❌ | ✅ | ❌ | ❌ |
You can add a menu to the footer with `footer_menu`, which takes a list of menu items. For example:
```toml
footer_menu = [
{url = "about", name = "about", trailing_slash = true},
{url = "privacy", name = "privacy", trailing_slash = true},
{url = "sitemap.xml", name = "sitemap", trailing_slash = false},
]
```
### Copyright ### Copyright
@ -546,6 +558,10 @@ If you have a multilingual site and want to set different copyright notices for
1. Set `translate_copyright = true` in `config.toml`. 1. Set `translate_copyright = true` in `config.toml`.
2. Add a `copyright` key to the `i18n` files. See the [documentation](/blog/faq-languages/#how-do-i-customise-or-override-a-specific-text-string-on-my-website). 2. Add a `copyright` key to the `i18n` files. See the [documentation](/blog/faq-languages/#how-do-i-customise-or-override-a-specific-text-string-on-my-website).
---
## Metadata
### Reading Time ### Reading Time
| Page | Section | `config.toml` | Follows Hierarchy | Requires JavaScript | | Page | Section | `config.toml` | Follows Hierarchy | Requires JavaScript |

@ -3,12 +3,15 @@ date_locale = "ca_ES"
full_stop ="." # Used at the end of a sentence. full_stop ="." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "blog" blog = "blog"
archive = "arxiu" archive = "arxiu"
tags = "etiquetes" tags = "etiquetes"
projects = "projectes" projects = "projectes"
about = "sobre mi" about = "sobre mi"
contact = "contacte"
privacy = "política de privadesa"
sitemap = "mapa del lloc"
# Navigation. # Navigation.
read_more = "Llegir més" read_more = "Llegir més"

@ -7,12 +7,15 @@ date_locale = "de_DE"
full_stop = "." # Used at the end of a sentence. full_stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "blog" blog = "blog"
archive = "archiv" archive = "archiv"
tags = "tags" tags = "tags"
projects = "projekte" projects = "projekte"
about = "über" about = "über"
contact = "kontakt"
privacy = "datenschutzrichtlinie"
sitemap = "seitenübersicht"
# Navigation. # Navigation.
read_more = "Weiterlesen" read_more = "Weiterlesen"

@ -3,12 +3,15 @@ date_locale = "en_GB"
full_stop = "." # Used at the end of a sentence. full_stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "blog" blog = "blog"
archive = "archive" archive = "archive"
tags = "tags" tags = "tags"
projects = "projects" projects = "projects"
about = "about" about = "about"
contact = "contact"
privacy = "privacy policy"
sitemap = "sitemap"
# Navigation. # Navigation.
read_more = "Read more" read_more = "Read more"

@ -3,12 +3,15 @@ date_locale = "es_ES"
full_stop = "." # Used at the end of a sentence. full_stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "blog" blog = "blog"
archive = "archivo" archive = "archivo"
tags = "etiquetas" tags = "etiquetas"
projects = "proyectos" projects = "proyectos"
about = "sobre mí" about = "sobre mí"
contact = "contacto"
privacy = "política de privacidad"
sitemap = "mapa del sitio"
# Navigation. # Navigation.
read_more = "Leer más" read_more = "Leer más"

@ -7,12 +7,15 @@ date_locale = "fr_FR"
full_stop = "." # Used at the end of a sentence. full_stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "blog" blog = "blog"
archive = "archives" archive = "archives"
tags = "étiquettes" tags = "étiquettes"
projects = "projets" projects = "projets"
about = "à propos" about = "à propos"
contact = "contact"
privacy = "politique de confidentialité"
sitemap = "plan du site"
# Navigation. # Navigation.
read_more = "Lire plus" read_more = "Lire plus"

@ -5,12 +5,15 @@ date_locale = "hi_IN"
full_stop ="।" # Used at the end of a sentence. full_stop ="।" # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "ब्लॉग" blog = "ब्लॉग"
archive = "संग्रह" archive = "संग्रह"
tags = "टैग" tags = "टैग"
projects = "परियोजनाएं" projects = "परियोजनाएं"
about = "बारे में" about = "बारे में"
contact = "संपर्क"
privacy = "गोपनीयता नीति"
sitemap = "साइटमैप"
# Navigation. # Navigation.
read_more = "और पढ़ें" read_more = "और पढ़ें"

@ -3,12 +3,15 @@ date_locale = "it_IT"
full_stop = "." # Used at the end of a sentence. full_stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu. # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "blog" blog = "blog"
archive = "archivio" archive = "archivio"
tags = "tag" tags = "tag"
projects = "progetti" projects = "progetti"
about = "chi sono" about = "chi sono"
contact = "contatto"
privacy = "politica sulla privacy"
sitemap = "mappa del sito"
# Navigation. # Navigation.
read_more = "Leggi di più" read_more = "Leggi di più"

@ -7,12 +7,15 @@ date_locale = "ja_JP"
full_stop = "。" # Used at the end of a sentence. full_stop = "。" # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "ブログ" blog = "ブログ"
archive = "アーカイブ" archive = "アーカイブ"
tags = "タグ" tags = "タグ"
projects = "プロジェクト" projects = "プロジェクト"
about = "自己紹介" about = "自己紹介"
contact = "お問い合わせ"
privacy = "プライバシーポリシー"
sitemap = "サイトマップ"
# Navigation. # Navigation.
read_more = "続きを読む" read_more = "続きを読む"

@ -7,12 +7,15 @@ date_locale = "ko_KR"
full_stop = "." # Used at the end of a sentence. full_stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "블로그" blog = "블로그"
archive = "아카이브" archive = "아카이브"
tags = "태그" tags = "태그"
projects = "프로젝트" projects = "프로젝트"
about = "소개" about = "소개"
contact = "연락처"
privacy = "개인정보 처리방침"
sitemap = "사이트맵"
# Navigation. # Navigation.
read_more = "더 읽기" read_more = "더 읽기"

@ -3,12 +3,15 @@ date_locale = "pt_PT"
full_stop = "." # Used at the end of a sentence. full_stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "blog" blog = "blog"
archive = "arquivo" archive = "arquivo"
tags = "etiquetas" tags = "etiquetas"
projects = "projetos" projects = "projetos"
about = "sobre" about = "sobre"
contact = "contacto"
privacy = "política de privacidade"
sitemap = "mapa do site"
# Navigation. # Navigation.
read_more = "Ler mais" read_more = "Ler mais"

@ -3,12 +3,15 @@ date_locale = "ru_RU"
full-stop = "." # Used at the end of a sentence. full-stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu. # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "блог" blog = "блог"
archive = "архив" archive = "архив"
tags = "теги" tags = "теги"
projects = "проекты" projects = "проекты"
about = "обо мне" about = "обо мне"
contact = "контакт"
privacy = "политика конфиденциальности"
sitemap = "карта сайта"
# Navigation. # Navigation.
read_more = "Читать далее" read_more = "Читать далее"

@ -7,12 +7,15 @@ date_locale = "uk_UA"
full-stop = "." # Used at the end of a sentence. full-stop = "." # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "блог" blog = "блог"
archive = "архів" archive = "архів"
tags = "теги" tags = "теги"
projects = "проєкти" projects = "проєкти"
about = "про мене" about = "про мене"
contact = "контакт"
privacy = "політика конфіденційності"
sitemap = "карта сайту"
# Navigation. # Navigation.
read_more = "Читати далі" read_more = "Читати далі"

@ -3,12 +3,15 @@ date_locale = "zh_CN"
full_stop = "。" # Used at the end of a sentence. full_stop = "。" # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu. # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "博客" blog = "博客"
archive = "归档" archive = "归档"
tags = "标签" tags = "标签"
projects = "项目" projects = "项目"
about = "关于" about = "关于"
contact = "联系方式" # Machine translated.
privacy = "隐私政策" # Machine translated.
sitemap = "站点地图" # Machine translated.
# Navigation. # Navigation.
read_more = "阅读全文" read_more = "阅读全文"

@ -3,12 +3,15 @@ date_locale = "zh_TW"
full_stop = "。" # Used at the end of a sentence. full_stop = "。" # Used at the end of a sentence.
# Menu items. # Menu items.
# Should match the names in config.extra.menu # Should match the names in config.extra.menu and config.extra.footer_menu.
blog = "網誌" blog = "網誌"
archive = "歸檔" archive = "歸檔"
tags = "標籤" tags = "標籤"
projects = "專案" projects = "專案"
about = "關於" about = "關於"
contact = "聯絡方式" # Machine translated.
privacy = "隱私政策" # Machine translated.
sitemap = "網站地圖" # Machine translated.
# Navigation. # Navigation.
read_more = "閱讀全文" read_more = "閱讀全文"

@ -1,7 +1,14 @@
footer { footer {
margin-top: auto; margin-top: auto;
margin-bottom: 1.4rem; margin-bottom: 1.4rem;
color: var(--meta-color);
font-size: 0.88rem;
font-family: var(--post-font-family); font-family: var(--post-font-family);
text-align: center;
.nav-links {
color: var(--primary-color);
}
} }
footer section { footer section {
@ -68,13 +75,3 @@ footer nav {
} }
} }
} }
.credits {
color: var(--meta-color);
font-size: 0.88rem;
text-align: center;
p {
margin: 0;
}
}

File diff suppressed because one or more lines are too long

@ -58,6 +58,32 @@
</ul> </ul>
{% endif %} {% endif %}
</nav> </nav>
{# Footer menu #}
<nav class="nav-navs">
{%- if config.extra.footer_menu %}
<small>
<ul>
{% for menu in config.extra.footer_menu %}
<li>
{%- set trailing_slash = menu.trailing_slash | default(value=true) -%}
{%- if menu.url == "sitemap.xml" -%}
{%- set url = get_url(path=menu.url, trailing_slash=trailing_slash) -%}
{%- else -%}
{%- set url = get_url(path=menu.url, lang=lang, trailing_slash=trailing_slash) -%}
{%- endif -%}
<a class="nav-links no-hover-padding" href="{{ url }}">
{{ macros_translate::translate(key=menu.name, default=menu.name, language_strings=language_strings) }}
</a>
</li>
{% endfor %}
</ul>
</small>
{% endif %}
</nav>
<div class="credits"> <div class="credits">
<small> <small>
{# Shows optional Copyright notice #} {# Shows optional Copyright notice #}

@ -133,7 +133,6 @@ menu = [
{ name = "archive", url = "archive", trailing_slash = true }, { name = "archive", url = "archive", trailing_slash = true },
{ name = "tags", url = "tags", trailing_slash = true }, { name = "tags", url = "tags", trailing_slash = true },
{ name = "projects", url = "projects", trailing_slash = true }, { name = "projects", url = "projects", trailing_slash = true },
{ name = "about", url = "about", trailing_slash = true },
] ]
# The RSS icon will be shown if (1) it's enabled and (2) the following variable is set to true. # The RSS icon will be shown if (1) it's enabled and (2) the following variable is set to true.
@ -160,6 +159,13 @@ encode_plaintext_email = true # Setting is ignored if email is already encoded.
# { name = "spotify", url = "https://open.spotify.com/artist/5Hv2bYBhMp1lUHFri06xkE", icon = "spotify" }, # { name = "spotify", url = "https://open.spotify.com/artist/5Hv2bYBhMp1lUHFri06xkE", icon = "spotify" },
# ] # ]
# Extra menu to show on the footer, below socials section.
# footer_menu = [
# {url = "about", name = "about", trailing_slash = true},
# {url = "privacy", name = "privacy", trailing_slash = true},
# {url = "sitemap.xml", name = "sitemap", trailing_slash = false},
# ]
# Enable a copyright notice for the footer, shown between socials and the "Powered by" text. # Enable a copyright notice for the footer, shown between socials and the "Powered by" text.
# You can use $CURRENT_YEAR to automatically insert the current year. # You can use $CURRENT_YEAR to automatically insert the current year.
# $SEPARATOR will be replaced by the `separator` variable. # $SEPARATOR will be replaced by the `separator` variable.

Loading…
Cancel
Save