Sha256: 055a35470db9bd0974474dc599bbd08f142b743696bbc125454bba5d0dad32e0
Contents?: true
Size: 678 Bytes
Versions: 18
Compression:
Stored size: 678 Bytes
Contents
{% assign authors = "" | split: "," %} {% if include.post.author %} {% assign authors = authors | push: include.post.author %} {% endif %} {% if include.post.authors %} {% assign authors = authors | concat: include.post.authors %} {% endif %} {% assign num_authors = authors | size %} <span class="authors"> {% for author in authors %} <span class="author"> {% if author.name %} {% include post-author-pic.html author=author %} <span class="author-name">{{ author.name }}</span> {% endif %} </span> {% endfor %} </span> <span class="date"> {% if num_authors > 0 %}on {% endif %} {{ include.post.date | date_to_string }} </span>
Version data entries
18 entries across 18 versions & 1 rubygems