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
- Brand Name – 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": "Looka 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 Looka / Built with love using [Astro Themes](https://getastrothemes.com/) by [Getastrothemes](https://getastrothemes.com/)"}
Example: French (fr.json
)
"footer": { "quick_links": "Liens rapides", "legal": "Juridique", "resources": "Ressources", "description": "Looka 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 Looka / Construit avec amour [Astro Themes](https://getastrothemes.com/) par [Getastrothemes](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
Customizing Brand Name
To modify the brand name, locate brand_name
in config.toml
located in the src/config
folder and update it as follows:
# Different theme settings# -----------------------------------------------------------------------------------------------------------------------------------[settings] # If you change value of any of the following three, make sure to change the folder name also from # - "src/content" folder # - "src/[...lang]/pages" folder # - "src/content.config.ts" collection object blog_folder = "blog" # Folder where blog posts are stored services_folder = "services" # Folder where services are stored portfolio_folder = "case-studies" # Folder where case-studies or projects or portfolio are stored
pagination = 5 # Number of posts displayed on each page blog list page sticky_header = true # Enables or disable sticky feature of header brand_name = "Looka" # Name to be displayed in the footer as big text brand_name = "your-brand" # Name to be displayed in the footer as big text