标签: jekyll
我希望有一个对象作为条件语句中的站点变量传递。
我已经尝试过直接实施...不起作用。
... # I want to replace: {% for author in site.research %} ... # with: ... {% for author in site.{{include.content}} %} ...
答案 0 :(得分:0)
{% for author in site[include.content] %}可以解决问题。
{% for author in site[include.content] %}