I built my first Tumblr theme last week and love the simplicity of including items like custom text. I am wondering if Tumblr has an If/Else-type block, such that if a boolean option is set to "0", contentX appears, but when set to "1", contentY appears?
{block:IfBooleanText}
<header><h1>{text:Boolean Text}</h1></header>
{/block:IfBooleanText}
{block:ElseBooleanText}
<header><h1>Howdy</h1></header>
{/block:ElseBooleanText}
…something like that.
Thanks!