Shopify 控制 ELSE IF?

Shopify Control ELSE IF?

我正在尝试在 .liquid 主题中编写一个简单的 else if 语句。

这是我的代码。

  {% if page.template_suffix == 'survey' %}
  {% include 'header_fullbg' %} 
  {% elsif page.template_suffix == 'surveystart' %}
  {% include 'header_fullbg2' %} 
  {% else %}
  {% include header-layout %} 
  {% endif %}

这是一个屏幕截图,可以看到 "intelliSense"

如您所见,else if 语句未被识别为正确?有人可以帮帮我吗?我已经确认这不起作用。

我明白了。语法正确。

我忘了我有另一段代码添加了乱七八糟的页脚片段。

我修好了!感谢您的关注。

之前

  {% if page.template_suffix == 'survey' %}
  {% include 'footer_fullbg' %} 
  {%elsif page.template_suffix == 'surveystart' %}
  {%else %}
  {% include footer-layout %}
  {% endif %}

之后

  {% if page.template_suffix == 'survey' %}
  {% include 'footer_fullbg' %} 
  {%elsif page.template_suffix == 'surveystart' %}
  {% include 'footer_fullbg' %} 
  {%else %}
  {% include footer-layout %}
  {% endif %}