带有子目录和自己的 Jekyll 集合 index.html

Jekyll collection with subdirectories and own index.html

您好,提前感谢您对我的问题的任何 help/suggestions,

背景信息: 我一直在使用 Jekyll 静态站点生成器,我使用的主题有一个博客功能 posts 这已经在使用中. 现有循环显示其目录中的所有降价文件: {% assign posts = paginator.posts | where: "lang", page.lang %}{% for post in posts %}

我目前使用的是 Jekyll 3.8.5。

目标:创建第二个博客notes。然而,这个博客应该能够容纳 3 个子目录,并可以选择在 3 个子类别之间进行过滤。顶级目录是“发行说明”,此页面应显示所有子目录。 每个子目录应仅显示其特定文件,即 iOS 仅显示每个降价文件中按类别“iOS”过滤的特定发行说明。

我想创建第二个名为“发行说明”的博客,其中包含 3 个不同的子集(类别),分别是 Android、iOS 和 Windows;发行说明的每个子目录将包含多个 Markdown 文件,这些文件都属于同一类型(相同的标签或类别)

结构:

_releasenotes
  - ios
  - android
  - windows

我尝试使用此线程中的方法实现该功能:[ 但没有完全成功。

方法:为_releasenotes创建个人index.html 这将使用此循环显示该目录中的所有降价文件:

{% assign notes = site.releasenotes| sort:'title' %}
{% for note in notes %}
{% if page.url != note.url and include.category == nil or note.url contains include.category %}
<a href={{ note.url | prepend: site.baseurl }}>{{note.title}}</a>
{% endif %}
{% endfor %}

然后将此代码注入到发行说明目录中的 index.html 中,它看起来像这样:

---
title: release notes
---
{% include list-releasenotes.html %}

结果:站点构建后,它会将创建的 index.html 替换为原始站点 index.html,这违背了目的。 每个子集合都有自己的“index.html”,用于循环其中的所有 MD 文件。然而,Jekyll 不会为每个集合使用提供的索引页面,而是生成自己的 index.html 作为(错误的)“着陆页”。

Jekyll 生成 releasenotes/index/index.html :(

给我:

public
- releasenotes
    - index.html (the original site index.html)
    /ios
    /android
    /windows
    /index/index.html (mine that includes another html)

而不是:

public
- releasenotes
    - index.html (Mine which includes another html)
    /ios
    /android
    /windows

我如何配置 Jekyll,它不会将我的 index.html(在 _releasenotes 中)转换为子目录,而是应该使用我创建的 index.html 作为发布的入口页面笔记? 请记住,我可以在发行说明文件夹和子文件夹中看到所有发行说明,我应该能够在 iOS、Android 和 Windows. 之间进行过滤

收集配置如下:

collections:
  releasenotes:
    output: true
    android:
      output: true
    ios:
      output: true
    portal:
      output: true

由于默认永久链接设置,_releasenotes/index.html collection 项目文件输出到 releasenotes/index/index.html

您可以通过在该文件的前面设置此项来覆盖它:

permalink: /releasenotes/index.html