I'm trying to set up my website so changing one config value reflects in a site-wide change. The most obvious example is changing the site title.
I tried using config('constants.site_title') or something like that but it doesn't look like it can be accessed on the twig without initializing it in the php code section.
I tried using plugin's Settings as outlined in https://octobercms.com/docs/plugin/settings#backend-pages but that also was hard to access from the twig views.
Finally I found that using theme custom form data works (see https://octobercms.com/docs/themes/development#customization). Is this the right way to do it? I feel like this use case must have been encountered before and there must be a best practice for it.