That doesn't seem to be working. When I try to save the template with:
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
<title>{vb:raw vboptions.bbtitle}</title>
{vb:raw headinclude}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div id="pagetitle">
<h1>{vb:raw pagetitle}</h1>
</div>
<h2 class="blockhead">Test Form Data</h2>
<div class="blockbody">
<div class="blockrow">
<vb:if condition="$show['member']">
<p>You are logged in.</p>
<vb:else />
<p>You are not logged in.</p>
<vb:if />
</div>
</div>
{vb:raw footer}
</body>
</html>
vBulletin gives me an error that says "unclosed_tag". If I remove the vb:if section, it saves properly.