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

Version Path
jekyll-theme-open-project-2.1.14 _includes/_post-meta.html
jekyll-theme-open-project-2.1.13 _includes/_post-meta.html
jekyll-theme-open-project-2.1.12 _includes/_post-meta.html
jekyll-theme-open-project-2.1.11 _includes/_post-meta.html
jekyll-theme-open-project-2.1.10 _includes/_post-meta.html
jekyll-theme-open-project-2.1.9 _includes/_post-meta.html
jekyll-theme-open-project-2.1.8 _includes/_post-meta.html
jekyll-theme-open-project-2.1.7 _includes/_post-meta.html
jekyll-theme-open-project-2.1.6 _includes/_post-meta.html
jekyll-theme-open-project-2.1.5 _includes/_post-meta.html
jekyll-theme-open-project-2.1.4 _includes/_post-meta.html
jekyll-theme-open-project-2.1.3 _includes/_post-meta.html
jekyll-theme-open-project-2.1.1 _includes/_post-meta.html
jekyll-theme-open-project-2.1.0 _includes/_post-meta.html
jekyll-theme-open-project-2.0.22 _includes/_post-meta.html
jekyll-theme-open-project-2.0.21 _includes/_post-meta.html
jekyll-theme-open-project-2.0.20 _includes/_post-meta.html
jekyll-theme-open-project-2.0.19 _includes/_post-meta.html