We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sometime a block should be wrapped by other markup, but that markup should only be included when the block is defined:
base.dust*
{?block} <div class="my-block"> {+block/} </div> {/block}
template.dust
{>"base.dust"/} {<block}wrap this with a classed div{/block}
The {?block} check never succeeds, so neither the block nor the wrapper markup get output to the result stream.
{?block}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometime a block should be wrapped by other markup, but that markup should only be included when the block is defined:
base.dust*
template.dust
The
{?block}
check never succeeds, so neither the block nor the wrapper markup get output to the result stream.The text was updated successfully, but these errors were encountered: