Sha256: a47d4dbf7cdb7d76cf84fdceb2b91dd7a63db882c1530c3f710d2dfdcdc6ea8a

Contents?: true

Size: 628 Bytes

Versions: 3

Compression:

Stored size: 628 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 %}

<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 authors %}on {% endif %}
  {{ include.post.date | date_to_string }}
</span>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-theme-open-project-2.0.18 _includes/_post-meta.html
jekyll-theme-open-project-2.0.17 _includes/_post-meta.html
jekyll-theme-open-project-2.0.16 _includes/_post-meta.html