Let’s say I have my company name/phone # stored in my config file:
/usr/config/themes/mytheme.yaml:
company_name: XYZ Builders
contact_phone_no: (123) 456-7890
Is there a way of accessing this within my markdown? I know this isn’t twig, but how can I get something like this to work:
Welcome to the home page of {{ company_name }}!
If you have any questions, please contact us at: {{ contact_phone_no }}.
Also, bonus points if there is a better place to put this other than in side of my custom theme’s config file (ie user/config/site.yaml or somewhere else).