left.html 310 B

12345678910
  1. {% if page.url != "/posts.html" %}
  2. <div class="posts recent-posts">
  3. <h3>Recent Posts</h3>
  4. <ul class="list-unstyled">
  5. {% for post in site.posts | limit:10 %}
  6. <li><code>{{ post.date | date:'%Y-%m-%d' }}</code>&mdash; <a href="{{ post.url }}">{{ post.title }}</a></li>
  7. {% endfor %}
  8. </ul>
  9. </div>
  10. {% endif %}