我正在尝试在内部使用带有 if 语句的块,但是当我使用 {{ if }} 条件时,它之外的所有内容都显示为双重内容
例子:
{{ blocks }}
... more code and 2 more IFs above
{{ if set == "hero-1" }}
<div class="container ">
<section class="hero">
<div class="hero-body">
<div class="padding-50 has-text-centered">
<h1 class="h1">
Heading
</h1>
<h2 class="h2">
Heading 2
</h2>
</div>
</div>
</section>
</div>
{{ /if }}
<hr>
... more code here
{{ /blocks }}
在这种情况下,它会导致标题显示正常,标题 2 显示正常,但是 HR 将被复制,还有其他方式将其设置为某些 if 语句吗?