Skip to main content

Footer

Customize the CTA, copyright, and social links

The footer acts as global closure for the storefront and contains three elements:

  1. Call to Action (headless bundle),
  2. Copyright information (config) and
  3. Social network links (menus).

Call to Action

The CTA is defined by the content/footer/index.md headless content file.

The default file contains:

Markdown content/footer/index.en.md
 1---
 2headless: true
 3# EDIT Only Below the line
 4# -----------------------------------------------------
 5
 6title: 'Sound. Presence. Purpose.'
 7# The Links
 8params:
 9  links:
10    - label: 'Aura Pro II'
11      url: '/aura-pro-ii/'
12    - label: 'Flow II'
13      url: '/flow-ii/'
14---
15
16Focused on crafting immersive audio experiences. We believe sound should not just be heard—it should move you.

Parameters Reference

title
title: 'Sound. Presence. Purpose.' — (string)
Renders the CTA heading.
links.label
label: 'Aura Pro II' — (string, required)
The text label for the link.
links.url
url: '/aura-pro-ii/' — (URL, required)
The href destination.
links.style
style: 'outline' — (string)
The visual style of the links
Values: primary, ghost (default: outline)
links.attributes
attributes: [] — (array)
Custom attributes for the link anchor, such as aria-label, target="_blank", etc.

Establishment Year

The copyright year is controlled globally in config/_default/params.toml

Toml config/_default/params.toml
1established_year = "2026"

The theme auto-handle the date range. If established_year is earlier than the current year, it renders as a range (e.g. 2025–2026).

Rights & Holder

To customize the copyright text, edit the i18n file. The .Holder variable defaults to the site.Title.

Toml i18n/en.toml
1[CopyrightNotice]
2other = "{{ .Holder }}. All rights reserved."

The social networks links are rendered from the [[social]] menu definition.

Toml config/_default/menus.toml
1[[social]]
2name = "Github"
3url = "https://github.com/oxypteros/"
4params = { icon = "github-logo" }
5weight = 100

Icon Requirements

  1. Place your SVG icon inside assets/icons/.
  2. Reference the filename (without extension) in the icon param.
  3. Important: Your SVG should use stroke="currentColor", stroke="1.625" and fill="none" if you want to adhere to the original figma template styling.