Jekyll 杰基尔——内容不是';他没有出现

Jekyll 杰基尔——内容不是';他没有出现,jekyll,Jekyll,我不熟悉使用jekyll,我正在使用一个布局来按索引构建。 这是我在default.html中的身体布局(我没有包括不相关的部分): <body> {% include nav.html %} {{ content }} {% include footer.html %} </body> {%include nav.html%} {{content}} {%include footer.html%} 但如果我使用这个“默认”布局,它只显示我

我不熟悉使用jekyll,我正在使用一个布局来按索引构建。 这是我在default.html中的身体布局(我没有包括不相关的部分):

<body>
    {% include nav.html %}
    {{ content }}
    {% include footer.html %}

</body>

{%include nav.html%}
{{content}}
{%include footer.html%}
但如果我使用这个“默认”布局,它只显示我的导航栏和页脚。例如,如果这是我的代码:

---
layout: default
---

<h1>Hello</h1>
---
布局:默认值
---
你好
它只显示了这一点:

试着运行
jekyllserve--verbose
,看看这是否会提供任何错误或警告。