My bad I did not read the following:
http://forum.cmsmadesimple.org/viewtopi ... =8&t=14878
2) When editing page, or module templates, sometimes it isn't obvious what variables are available and how you
can use them.
For this, you need two things:
a) The {get_template_vars} smarty plugin
This smarty plugin is used in debugging and development to list all of the variables that smarty knows about
and their types. When working in any new (to you) template you should use this to see what variables are
available.
This is how it should be:
Code: Select all
{if $page_name eq "Home"}
{cms_stylesheet}
{else}
<link rel="stylesheet" type="text/css" href="*LINK TO ALTERNATIVE CSS FILE*" />
{/if}