Dahlia
Type to search documentation.

Footer

Configure copyright text and grouped footer links.

footer controls the lower site chrome.

ts
footer: {
copyright: 'Copyright © 2026 Prosefly.',
sections: [
{
title: 'Docs',
links: [
{ label: 'Overview', href: '/docs/overview/' },
{ label: 'Installation', href: '/docs/installation/' },
],
},
{
title: 'Project',
links: [
{
label: 'GitHub',
href: 'https://github.com/prosefly/astro-theme-dahlia',
external: true,
},
],
},
],
}

Credits

Dahlia shows a small Built with Dahlia credit in the footer by default. Disable it with the top-level credits option.

ts
credits: false

copyright renders under the footer brand.

ts
copyright: 'Copyright © 2026 Prosefly.'

Sections

sections is an ordered list of link groups.

ts
sections: [
{
title: 'Docs',
links: [
{ label: 'Overview', href: '/docs/overview/' },
{ label: 'Configuration', href: '/docs/configuration/project/' },
],
},
]

Each link supports label, href, and optional external.

Set sections to an empty array when the footer should only show the brand and copyright.

ts
footer: {
copyright: 'Copyright © 2026 Prosefly.',
sections: [],
}

Last updated Aug 24, 2026

Contributors