Jekyll Styles 无法在 localhost:4000 或我的 Github 上呈现,有人可以提供建议吗?

Jekyll Styles not rendering either on localhost:4000 or my Github, anyone to advise?

我正在为我的博客尝试使用 Jekyll Bootstrap。我已经用 Ruby 和 RoR 编码了一段时间。我设法在 Github 页面 (https://mukunzichild.github.io) 上托管了我的应用程序。但是,如您所见,CSS 样式 (Bootstrap 3) 未呈现。

我在 google 上搜索过,但一无所获。有些人在版本 3 中遇到了 Jekyl 样式的问题,但它不像我的那样。

我什至克隆了 Jekyll bootstrap 存储库,当我在本地 运行 它时它只会触发 HTML。我没有更改默认文件中的任何内容。

如果我在这里遗漏了什么,请告诉我。

这是一个 Jekyll Bootstrap 问题 (see issue here)。

您可以通过将 _includes/JB/setup 中的错误代码更改为以前的代码来解决此问题:

{% capture jbcache %}
  <!--
  - Dynamically set liquid variables for working with URLs/paths
  -->
  {% include JB/is_production %}
  {% if site.JB.setup.provider == "custom" %}
    {% include custom/setup %}
  {% else %}
    {% if is_production and site.JB.BASE_PATH and site.JB.BASE_PATH != '' %}
      {% assign BASE_PATH = site.JB.BASE_PATH %}
      {% assign HOME_PATH = site.JB.BASE_PATH %}
    {% else %}
      {% assign BASE_PATH = nil %}
      {% assign HOME_PATH = "/" %}
    {% endif %}

    {% if site.JB.ASSET_PATH %}
      {% assign ASSET_PATH = site.JB.ASSET_PATH %}
    {% else %}
      {% capture ASSET_PATH %}{{ BASE_PATH }}/assets/themes/{{ page.theme.name }}{% endcapture %}
    {% endif %}
  {% endif %}
{% endcapture %}{% assign jbcache = nil %}