Sha256: 95397b896addda834c85696bf511a9301850ebfd26650e264a964b93b05cde2d
Contents?: true
Size: 1.3 KB
Versions: 12
Compression:
Stored size: 1.3 KB
Contents
<ul class="grid"> {% for post in include.posts %} <li class="card-tab {{ post.color }}"> <div class="top-bar"> {{ post.date | date: site.acn.date_format }} </div> {% if post.icon %} <div class="tab"><span class="material-icons">{{ post.icon }}</span></div> {% else %} {% assign words = post.content | strip_html | strip_newlines | strip | split: " " %} <div class="tab">{{ words.size }}<small>words</small></div> {% endif %} <div class="header"> {% include writer.html info=post %} {% if writer_url %} <a href="{{ writer_url }}">{{ writer }}</a> {% else %} {{ writer }} {% endif %} </div> <div class="body"> {% if post.image %} <img src="{{ post.image }}" alt="{{ post.title }}" /> {% endif %} <h3><a href="{{ post.url }}">{{ post.title }}</a></h3> {{ post.excerpt }} </div> <div class="control"> <a href="{{ post.url }}"> <span class="middle-align material-icons">article</span> </a> {% if post.tags %} <div class="tags"> {% for tag in post.tags %} <small>{{ tag }}</small> {% endfor %} </div> {% endif %} </div> </li> {% endfor %} </ul>
Version data entries
12 entries across 12 versions & 1 rubygems