我正在建立我的第二個Jekyll網站,我試圖使頁面佈局拉不同包括基於變量。動態包括在液體Jekyll
例如,在download.md
:
layout: page
form: "free"
sidebar: "terms"
這樣,網站將不再編譯。它說
液體錯誤(第17行):錯誤的參數數量(4爲3)。
第17行是下例中的第一條if語句。
我應該如何設置這些包括?
<article class="s-article t-twocol__article">
<header class="s-article__header">
<h1 class="s-article__title">{{ page.title }}</h1>
<h4 class="s-article__lede">{{ page.lede }}</h4>
</header>
<div class="s-article__content">
{% if {{page.form}} == "full" %}
{% include c-form--full.html %}
{% endif %}
{% if {{page.form}} == "free" %}
{% include c-form--free.html %}
{% endif %}
{{ content }}
</div>
</article>
修復了它!謝謝! – Erica