我试图在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语句?
答案 0 :(得分:0)
如果你移动<hr>
里面的 if语句,它就不会重复。