我想在我的網站的主頁上添加一篇到我的博客文章的鏈接列表。如何獲取Github頁面以生成我的博客文章列表?
我理解的代碼做,這是
{% for post in site.posts %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p><small><strong>{{ post.date | date: "%B %e, %Y" }}</strong> . {{ post.category }} . <a href="http://mypage.github.com{{ post.url }}#disqus_thread"></a></small></p>
{% endfor %}
但我不知道在哪裏可以把這個代碼?
我試着將它添加到一個新的章節裏面default.html中,但是我收到一個「頁面構建失敗」的電子郵件
學習https://jekyllrb.com/docs/posts/ –