jekyll 无法列出帖子
jekyll cannot List posts
我正在学习 GitHub 页面
的 jekyll
我按照jekyll教程一步步来的,还是无法列出post。这是我的代码
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</li>
{% endfor %}
</ul>
我也设置了
future: true
github 页面无法列出 post。
我的 github 页面:https://v587ygq.github.io/blog.html
我 运行 你的 Jekyll 站点在本地。您的 post 中似乎存在导致构建错误的未知字符。
The raw content post 在 GitHub 上显示有两个引号不是 UTF-8。 fruit �C botanically a berry �C produced
。出于某种原因,这些引号不是正常引号,会导致构建错误。替换它们,网站构建良好。
我正在学习 GitHub 页面
的 jekyll我按照jekyll教程一步步来的,还是无法列出post。这是我的代码
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</li>
{% endfor %}
</ul>
我也设置了
future: true
github 页面无法列出 post。
我的 github 页面:https://v587ygq.github.io/blog.html
我 运行 你的 Jekyll 站点在本地。您的 post 中似乎存在导致构建错误的未知字符。
The raw content post 在 GitHub 上显示有两个引号不是 UTF-8。 fruit �C botanically a berry �C produced
。出于某种原因,这些引号不是正常引号,会导致构建错误。替换它们,网站构建良好。