1
Can a Smarty variable be used within a string as shown below?
<link rel="stylesheet" href="themes/<{$theme}>/style.css" />
Or should $theme be the entire string, i.e.:
$theme = "themes/" . $theme. "/style.css"
<link rel="stylesheet" href=<{$theme}> />
Thanks for your help!
Brad