|
Hi !
I see this portion of code as a problem maybe :
<html><head>
{if $title != ""}
<title>website name - {$title}</title>
{else}
<title>website name - slogan goes here</title>
{/if}
</head><body>
Why hiding the <title> in the loop ? that will cause uncomprehension to a html editor, no ?
Could we have stuff like
<title>website name -
{if $title != ""}
{$title}
{else}
slogan goes here
{/if}
</title>
I would have done like this, but maybe I'm wrong, as I just start on Templates.
Thanks anyway for the good article
Alain (chri01@hotmail.com)
|