Sha256: 17bb83172b5ff72520439a9fe9e1ed56b8734a64f82d42fac26f33d899ba6471

Contents?: true

Size: 951 Bytes

Versions: 2

Compression:

Stored size: 951 Bytes

Contents

---
layout: default
---
{% include author.html %}
{% assign posts_count = paginator.posts | size %}
{% if posts_count > 0 %}
<h1>Recent blog articles</h1>
    <div class="post-links">
      {% for post in paginator.posts %}
        <div class="post-link-wrapper">
          <a href="{{ post.url | relative_url }}" class="post-link">{{ post.title }}</a>
          <div class="post-meta">

            <div class="post-tags">
                {% for tag in post.tags %}
                <a class="tag" href="/tag/{{ tag }}/">{{ tag }}</a>
                {% endfor %}
            </div>
            {% if site.date_format %}
              {{ post.date | date: site.date_format }}
            {% else %}
              {{ post.date | date: "%b %-d, %Y" }}
            {% endif %}
          </div>
        </div>
      {% endfor %}
    </div>

    {% include pagination.html %}
{% else %}
<div>No posts yet.</div>
{% endif %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-dash-1.0.3 _layouts/home.html
jekyll-dash-1.0.2 _layouts/home.html