1

我正在为我的博客使用 Jekyll Bootstrap。我一直在用 Ruby 和 RoR 进行编码。我设法在 Github Pages ( https://mukunzichild.github.io ) 上托管我的应用程序。但是,如您所见,CSS 样式(Bootstrap 3)没有呈现。

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

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

让我知道我在这里是否缺少任何东西。

4

1 回答 1

1

这是一个 Jekyll Bootstrap 问题(请参阅此处的问题)。

您可以通过以前的代码更改_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 %}
于 2016-11-27T12:58:27.560 回答