Variables loaded from config files Variables that are loaded from the config files are referenced by enclosing them within hash marks (#), or with the smarty variable $smarty.config. The second syntax is useful for embedding into quoted attribute values. config variables foo.conf: index.tpl: {#pageTitle#}
First Last Address
]]>
index.tpl: (alternate syntax) {$smarty.config.pageTitle}
First Last Address
]]>
this will output for both examples: This is mine
First Last Address
]]>
Config file variables cannot be used until after they are loaded in from a config file. This procedure is explained later in this document under config_load.