0

次のような Markdown ページ index2.md があります。

---
layout: plain
title: Index2
---

test Index2


<ul class="posts">
    {% for post in site.posts %}
      <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
    {% endfor %}
</ul>

ただし、これは私のブログ投稿を表示できません

<body>
    <div class="wrapper">
      <header>
        <h1>Nodeclipse.github.io</h1>
        <p>Resource for Nodeclipse developers</p>


        <p class="view"><a href="https://github.com/Nodeclipse">View My GitHub Profile</a></p>

      </header>
      <section>
            <div>            
            <p>test Index2</p>

<p>  <ul class="posts"></p>

<p>  </ul></p>

            </div>
      </section>
      <footer>
        <p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
      </footer>
    </div>
    <script src="javascripts/scale.fix.js"></script>

  </body>

つまり、ブログ リストは空です。

4

1 に答える 1