Customizing the Footer
The footer contains following essential elements that you can customize using the links below:
- Logo – Update your site’s logo
- Social Links – Configure site-wide social links
- Footer Menus – Customize navigation menus
- Subscription – Set up the subscription form
- Copyright & Footer Description – See below
Customizing Copyright Text and Footer Description
To modify the copyright text and footer description, locate the appropriate i81n file for the desired language. Update it as follows:
Example: English (en.json
)
"footer": { "quick_links": "Quick Links", "legal": "Legal", "resources": "Resources", "description": "Upstart is a San Francisco-based design and technology company founded in 2016. Their mission is to democratize design by making professional branding tools accessible to everyone.", "copyright": "Copyright {{ year }} / All Rights Reserved By Upstart / Built with love using [Astro Themes](https://getastrothemes.com/)"}
Example: French (fr.json
)
"footer": { "quick_links": "Liens rapides", "legal": "Juridique", "resources": "Ressources", "description": "Upstart est une entreprise de design et de technologie basée à San Francisco, fondée en 2016. Leur mission est de démocratiser le design en rendant les outils de branding professionnels accessibles à tous.", "copyright": "Droits d'auteur {{ year }} / Tous droits réservés par Upstart / Construit avec amour [Astro Themes](https://getastrothemes.com/)"}
- Open
src/i18n/en.json
(for English) or another language file, such assrc/i18n/fr.json
(for French). - Locate the
"description"
&"copyright"
section. - Update the those values.
Note: If you are not using the multilingual feature, you can update the copyright and footer description directly in the
config.toml
file
footer_description = "" # Check src/i18n/en.json and src/i18n/fr.json for changing the footer description in different languages
# For changing footer description and footer copyright in different languages see src/i18n/en.json and src/i18n/fr.json[settings.copyright] enable = true text = "" # Check src/i18n/en.json and src/i18n/fr.json for changing the copyright text in different languages