Example 18-2. Assigning a template variable its default value
例 18-2.赋给一个模板变量默认的值
{* do this somewhere at the top of your template *}
{assign var="title" value=$title|default:"no title"}
{* if $title was empty, it now contains the value "no title" when you print it *}
{$title}