6

Jekyll を使用してブログを開発しています。コマンドでサーバーを実行するとjekyll、コンテンツが生成されません。

ターミナルに表示されるものの下:

WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true

index.html

デフォルトの Jekyll ボイラープレートを使用しました。

layout: default

{% for post in paginator.posts %}
<article>

  <header class="entry-header">
    <h2 class="entry-title"><a href="{{ post.url }}" title="{{ post.title }}" rel="bookmark">{{ post.title }}</a></h2>
  </header>

  <aside class="entry-details">
    <p class="entry-date">Publicado em: <a href="{{ post.url }}">{{ post.date | date: "%d/%m/%y" }}</a></p>
  </aside>

  <div class="entry-content">
      {{ post.content }}
  </div>

</article>
{% endfor %}

post.html

スタンダードも。

layout: default

<article>

  <header class="entry-header">
    <h2 class="entry-title"><a href="{{ page.url }}" title="{{ page.title }}" rel="bookmark">{{ page.title }}</a></h2>
  </header>

  <aside class="entry-details">
    <a href="{{ page.url }}" class="entry-date">{{ page.date | date: "%d/%m/%y" }}</a>
  </aside>

  <div class="entry-content clearfix">
    {{ post.content }}
  </div>

  <footer class="entry-meta">
    {% include disqus.html %}
  </footer>

</article>

default.html 標準も。

<!doctype html>
<html lang="pt-BR">
<head>
  {% include head.html %}
</head>

<body class="home blog">

  {% include header.html %}

  <div id="content">
    {{ content }}
  </div><!-- end #content -->

  {% include footer.html %}

</body>
</html>
4

1 に答える 1

1

3 つのファイルを使用してサンプル Gistを作成しました。jekyll serveJekyll 2.1.1 (廃止され、このコマンドに置き換えられました) を使用して実行しjekyll --serverましたが、エラーは発生しませんでした (ただし、Jekyll は yaml フロント マターのために Liquid 構文を無視しました)。

この問題は、WEBrick (Jekyll のデフォルト サーバー) のバグに関連していると思われます。

この問題は無関係であると想定していますが、YAML フロント マターが欠落---しており、ディレクトリを持っていないことは承知しています。_posts

于 2014-07-18T07:49:27.953 に答える