我一直在Jekyll Docs阅读所有内容,但我找不到办法。
默认情况下,生成网络时,jekyll会显示所有博客帖子的链接列表。有没有办法在同一页面显示所有博文的内容? (alla blogspot / wordpress /传统博客......)
干杯
答案 0 :(得分:1)
从This tutorial找到我的解决方案,其中包括编辑index.md并添加以下内容:
{% for post in site.posts %}
<article>
<h2>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h2>
<time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date_to_long_string }}</time>
{{ post.content }}
</article>
{% endfor %}