Sha256: 7e73f31bc758942e6a7b10af27a5a8bcb5b16fe685fabd8fbcfaa2c804e3417f
Contents?: true
Size: 763 Bytes
Versions: 13
Compression:
Stored size: 763 Bytes
Contents
<ul class="p-0 post-list"> {% for post in paginator.posts %} <li class="row mb-5"> <div class="col-12 d-flex justify-content-center text-center"> <a class="text-dark post-link" href="{{ post.url | prepend: site.url }}"> <span>{{ post.title }}</span> <br> <small class="d-flex justify-content-center">{{ post.date | date: "%-d %B %Y" }}</small> </a> </div> {% assign ph_1 = post.content | split: '<p>' %} {% assign ph_2 = ph_1[1] | split: '</p>' %} {% assign ph = ph_2[0] | split: '</p>' %} {% if include.rm %} <div><p>{{ ph }}</p></div> <div><p><a href="{{ post.url | prepend: site.url }}">Read more...</a></p></div> {% endif %} </li> {% endfor %} </ul>
Version data entries
13 entries across 13 versions & 1 rubygems