<txp:else /> single tag, 0 attributes

else

The else tag is a single tag that is used within a containing conditional tag to provide the means to assign default, or alternative, behavior when the condition in the surrounding tag is not met.

Visually, this is the general structure in which it is used:

<txp:if_conditional_tag>
  ...Content if true...
<txp:else />
  ...Content if not true...
</txp:if_conditional_tag>
<txp:else /> 1 examples

Display excerpt when available

<txp:if_excerpt>
	And Furthermore &#183; <txp:excerpt />
<txp:else />
	<txp:section link="1" /> 
</txp:if_excerpt>

What this does…
When the excerpt is available it is displayed, but when it is missing a hyperlinked section name is displayed instead.

Other tags used: excerpt, if_excerpt, section