I have a Smarty 2 template and I wish to use CSS import
or even just a regular <link>
tag to include a CSS file rather than using the traditional {literal}
tags with inline CSS.
Is this possible in Smarty 2?
The CSS file is in the same directory as the Smarty template, so I want to just get it from the same directory - but this is not working.
<link href="{$smarty.server.PHP_SELF}thumbnails.css" rel="stylesheet" type="text/css" />
Neither is the CSS @import
functionality.