Dreamweaverのテンプレートで分岐させる

癖のあるDreamweaverのテンプレート機能ですが、ベタでHTMLを大量に作成する時にはすごく重宝します。

変数:

<!-- TemplateParam name="変数名" type="text" value="" -->

書き方:

<!-- TemplateBeginMultipleIf -->
<!-- TemplateBeginIfClause cond="bodyID == 'index'" -->
<title>無料グループウェア「アイポ」</title>
<!-- TemplateEndIfClause -->
<!-- TemplateBeginIfClause cond="bodyID == 'oss'" -->
<title>オープンソース|無料グループウェア「アイポ」</title>
<!-- TemplateEndIfClause -->
<!-- TemplateBeginIfClause cond="true" -->
<title>その他|無料グループウェア「アイポ」</title>
<!-- TemplateEndIfClause -->
<!-- TemplateEndMultipleIf -->

bodyIDが「index」、「oss」の時と分岐し、最後は「それ以外の時」となっています。