2017-03-30 20 views
0

私はJekyll Docsですべてを読んできましたが、これを行う方法が見つかりませんでした。ジキル:同じページのすべての投稿を表示

デフォルトでは、ウェブを生成するとき、jekyllはすべてのブログ投稿のリンクのリストを表示します。同じページにすべてのブログ投稿の内容を表示する方法はありますか? (アラのBlogSpot /ワードプレス/伝統的なブログ...)から私の解決策が見つかり

乾杯

+0

「と同じでページ "とは特定のカテゴリに属する​​すべての投稿を意味しますか? – marcanuy

+0

私はブログのホームページにあります – ConstraintErrors

答えて

0

:編集index.mdで構成され、以下を追加しThis tutorialを、:

{% 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 %} 
+0

これはJekyllのドキュメントにもありますhttps://jekyllrb.com/docs/posts/#displaying-an-index-of-posts – marcanuy

関連する問題