Sha256: b4f69e1ba9961bc7b0a2f4011fe72f13bf36646b0ca4b0b4c0f2959bc13a88b4

Contents?: true

Size: 1.3 KB

Versions: 14

Compression:

Stored size: 1.3 KB

Contents

<div class="posts">
    {% unless paginator.posts %}
    <article><section class="post-content"><p>There are no blog posts</p></section></article>
    {% endunless %}
    {% for post in paginator.posts %}
    <div class="post-teaser">
        {% if post.thumbnail %}
        <div class="post-img">
            <a aria-label="{{ post.title }}" href="{{ post.url | relative_url }}">
                <img alt="{{ post.title }}" src="{{ post.thumbnail | relative_url }}">
            </a>
        </div>
        {% endif %}
        <span>
          <header>
            <h1>
              <a aria-label="{{ post.title }}" class="post-link" href="{{ post.url | relative_url }}">
                {{ post.title }}
              </a>
            </h1>
            {% include blog/post_info.liquid author=post.author date=post.date %}
          </header>
          {% if site.excerpt or site.theme_settings.excerpt %}
              <div class="excerpt">
                  {% if site.excerpt == "truncate" %}
                     {{ post.content | strip_html | truncate: '250' | escape }}
                  {% else %}
                     {{ post.excerpt | strip_html | escape }}
                  {% endif %}
              </div>
          {% endif %}
      </span>
    </div>
    {% endfor %}
</div>

{% include blog/blog_nav.liquid %}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
type-on-strap-2.4.11 _includes/blog/blog.liquid
type-on-strap-2.4.10 _includes/blog/blog.liquid
type-on-strap-2.4.9 _includes/blog/blog.liquid
type-on-strap-2.4.8 _includes/blog/blog.liquid
type-on-strap-2.4.7 _includes/blog/blog.liquid
type-on-strap-2.4.6 _includes/blog/blog.liquid
type-on-strap-2.4.5 _includes/blog/blog.liquid
type-on-strap-2.4.4 _includes/blog/blog.liquid
type-on-strap-2.4.3 _includes/blog/blog.liquid
type-on-strap-2.4.2 _includes/blog/blog.liquid
type-on-strap-2.4.1 _includes/blog/blog.liquid
type-on-strap-2.4.0 _includes/blog/blog.liquid
type-on-strap-2.3.11 _includes/blog/blog.liquid
type-on-strap-2.3.10 _includes/blog/blog.liquid