我已经转移到Jekyll的博客,因为我没有使用Wordpress中的大多数功能,因为我的主要是要有一个投资组合,我真的不需要花这么多钱托管等。
我在about目录中的index.html中调用我的about.md文件时出现问题。 about.md文件包含有关我自己的信息(简单的投资组合信息,很少会被更改)。
目前about目录中的index.html文件是:
---
layout: post
title: "About Me"
---
{% include head.html %}
<body class="about">
<div class="pure-g">
<section class="pure-u-2-3 container">
{% include nav.html %}
</section>
{% include about.md %}
</div>
{% include footer.html %}
</body>
正如您所看到的,我正在调用_include目录中的head.html + footer.html文件。我不知道如何调用about.md(这是包含信息的文件。我希望在网页上生成页面时显示在页面上)。
另外,在哪个目录中应该是about.md?我最初在根目录中有它,但后来把它移到了_includes,因为我想称之为 - 是对的吗?
我还在学习其中的一些部分,但无法找到教程。