Sha256: ff69dd6fb64a4453a4ec205d2ffdf59533df8d048fa916cc6aa51b5e601487df
Contents?: true
Size: 729 Bytes
Versions: 4
Compression:
Stored size: 729 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 }}"> <span>{{ post.title }}</span> <br> <small class="fs-10 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 }}">Read more...</a></p></div> {% endif %} </li> {% endfor %} </ul>
Version data entries
4 entries across 4 versions & 1 rubygems