我正在用Jekyll構建一個數據庫,並希望數據庫中的條目能夠鏈接到同一類別中的其他所有頁面。例如,在分類每一頁「A」將與此代碼段按鈕上市:列出除了當前使用Jekyll邏輯之外的每一頁
{% for page in site.pages %}
{% if page.layout == 'a' %}
<ul class="actions">
<li><a href="/people/{{ page.title | remove: ' ' | strip_newlines | downcase | md5 }}/" class="button alt small">{{ page.title }}</a></li>
</ul>
{% endif %}
{% endfor %}
我遇到的問題是通過列出每一個頁面將包括當前頁面。是否還有一層我可以添加的邏輯,它會將該片段列表放在除當前頁面之外的類別中的每個頁面上?謝謝!
謝謝!很有幫助! – pfr