2016-11-01 2 views
0

나는 기스 텁으로 사이트를 만들려고 노력해 왔으며 나는 모든 것을 처음 접했습니다.지킬 액체 오류가 나를 혼란스럽게합니다

{% for item in site.static_files %} 
    {% if item.path contains '/archive' %} 
     {% if item.path contains 'index.html' == false %} 
      {% assign split_path = item.path | split: '/' %} 
      <p>{{item.path}}</p> 
      {% assign filename = split_path.last %} 
      <p>{{ filename }}</p> 
     {% endif %} 
    {% endif %} 
{% endfor %} 

이 다음과 같은 오류 발생 :

Error: Liquid Warning: Liquid Syntax Error (line 5): Expected end_of_string but found comparison in "item.path contains 'index.html' == false" in archive/index.html

사람이 도와 드릴까요을 나는 나에게 약간의 두통을주고있다 코드의 조각으로 어려움을 겪고있다?

답변

1

은 교체 :

if item.path contains 'index.html' == false 

으로 : 액체의이

unless item.path contains 'index.html' 

를 혼동하기.

관련 문제