Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在 jekyll 中有如下所示的目录和文件结构,用于创建静态站点。在这种情况下,如何为 dev 目录创建一个循环,以便每次我都可以获得 *.md 文件的内容
static-site | content | dev | test1.md test2.md text3.md
在您的 _posts 文件夹中找到您的 *.md 内容(子目录很好),然后使用以下内容调用您的内容:
{% for post in site.categories.dev %} {{ post.content }} {% endfor %}
确保在您的 yaml 前端事项中包含“开发”类别。