如何为主页做一个IF语句?

How can I do an IF statement for the homepage?

我最近发现了如何让 if/thens 触发器,如果​​它是类别页面而不是产品页面。主页可以这样做吗?我正在尝试设置几个自定义元标记,但只能通过 base.html 文件在主页上设置。

我已经尝试过 {{#if home }} 和 {{#if homepage }} 但都没有成功。想法?

示例:

    {{#if product }}
    <do a thing on product pages>
    {{/if}}

    {{#if category }}
    <do a thing on category pages>
    {{/if}}

您可以查看当前模板:

{{#if template '==' 'pages/home'}}
   ...
{{/if}}