Sha256: 9a604ff33c83ae209f94f0d6abe175ecff9a4d93f2d97327047ccf2bb697dab8

Contents?: true

Size: 830 Bytes

Versions: 1

Compression:

Stored size: 830 Bytes

Contents

<div class="read-more">
  {% for post in site.related_posts limit:1 offset:1 %}
  <div class="read-more-header">
    <a href="{{ site.url }}{{ page.previous.url }}" class="read-more-btn">Read More</a>
  </div>
  <div class="read-more-content">
    <h3><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
    <p>{% if post.summary %}{{ post.summary }}&hellip;{% endif %} <a href="{{ site.url }}{{ post.url }}">Continue
      reading</a></p>
  </div>
  {% endfor %}
  <div class="read-more-list">
    {% for post in site.related_posts limit:2 offset:1 %}
    <div class="list-item">
      <h4><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h4>
      <span>Published on {{ post.date | date: "%Y-%m-%d" }}</span>
    </div>
    {% endfor %}
  </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cosy-jekyll-theme-1.0.5 _includes/read-more.html