gpt4 book ai didi

ruby - Jekyll 不显示任何内容

转载 作者:数据小太阳 更新时间:2023-10-29 07:08:15 27 4
gpt4 key购买 nike

我正在使用 Jekyll 开发博客。当我使用命令 jekyll 运行服务器时,内容不会生成。

在终端中显示的内容下方:

WARN 无法确定响应正文的内容长度。设置响应的内容长度或设置 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>

默认.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>

最佳答案

我创建了一个 example gist使用这三个文件。我使用 Jekyll 2.1.1 运行 jekyll serve(jekyll --server 已被弃用并替换为此命令),但我没有收到任何错误(尽管 Jekyll 确实忽略了由于 yaml 前面的内容,流式语法)。

我感觉这个问题与a bug in WEBrick有关(Jekyll 的默认服务器)。

我知道 YAML 前端缺少 --- 并且我没有 _posts 目录,尽管我假设这个问题是无关。

关于ruby - Jekyll 不显示任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14304547/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com