自分のブログの投稿へのリンクのリストを自分のサイトのホームページに含めたいと思います。Github Pagesでブログ投稿のリストを生成するにはどうすればよいですか?
私はこれを行うには、コードが
{% 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/ –