to the main page... about these slides...

Conditional processing

<xsl:if test="expression"> ... </...>
apply template if expression (converted to boolean) evaluates to true
<xsl:choose>
  <xsl:when test="expression"> ... </...>
  ...
  <xsl:otherwise> ... </...>
</...>
test conditions in turn, apply template for first true