Sha256: 190483435aa4ebf2ff653a9be06d98d80744e45b0b5ee0ae15cb489f09ea3efd

Contents?: true

Size: 566 Bytes

Versions: 1

Compression:

Stored size: 566 Bytes

Contents

<div class="card info-card sticky-div h-100">

  <div class="card-body">

    <h3 class="card-title text-center">Recent Posts</h3>
  </div>
    <ul class="list-group list-group-flush">
      {% for post in site.posts limit: 5 %}
        <li class="list-group-item">
          <time datetime="{{ page.date | date_to_xmlschema }}">{{ post.date | date: "%b %-d, %Y" }}</time> 
          &raquo;
          <a class="card-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
        </li>
      {% endfor %}
    </ul>
  <div class="card-body">
  </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-cadre-0.1.20 _includes/recent-posts.html