google / docsy

A set of Hugo doc templates for launching open source content.
https://docsy.dev
Apache License 2.0
2.63k stars 905 forks source link

Cannot remove "About Goldydocs" from footer #430

Closed Symbolics closed 3 years ago

Symbolics commented 3 years ago

I cannot seem to remove the "About Goldydocs" from the footer of the site (cloned from the docsy sample site). I would have thought this to be configurable from the config.toml, or perhaps documented in look and feel, but I haven't been able to find it anywhere. Searching the source only shows that string in one file: content/en/about/_index.html, and since that is a generated file, assume the value must come from a configuration variable somewhere. Which one is it and how is it set? Assuming it isn't a bug, I suspect this is a common enough task to be specifically documented, perhaps in an FAQ.

LisaFC commented 3 years ago

Hi there,

So the link title is set here: https://github.com/google/docsy/blob/master/layouts/partials/footer.html#L23

it's basically the title of your About page, so if you haven't changed that from the example site then that's what you get. If you don't have an About page at /about/ at then it shouldn't appear.

You can remove that link entirely in your project's config.toml by setting this value to true:

footer_about_disable = true