{* Smarty if/sample3-1.tpl *} <html> <head> <title>Smarty Test</title> </head> <body> <h1>{$title}</h1> <p>検索エンジンをお知らせします。</p> {if $engine == 'yahoo'} <p>検索サイトは<a href="http://www.yahoo.co.jp/">Yahoo</a>です</p> {else} <p>検索サイトは<a href="http://www.google.co.jp/">Google</a>です</p> {/if} </body> </html>