Getting title tags with URLs (smarty)
I know this is probably getting down to the nitty gritty detail of optimizing a site but how can I adapt this line from the browse.tpl file to include the page title in the generated source and not just the URL.
{$data[td].start_link}<strong>{$data[td].name}</strong></a>
In other words I want to do something simple like
{$data[td].start_link title="$data[td].name"}<strong>{$data[td].name}</strong></a>
but of course this does not work. I have looked on the smarty websites and can't find what I am looking for exactly. Is it indeed possible to add a a title tag?
|