Sha256: 8e50f5b572305899a6f022fe69f2cc263c049799dec2e456b0497e75577bfbfc

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

---
layout: default
---

<div class="home">

  {{ content }}

  <div class="col card-panel highlight">

    <div class="col card-panel primary">
      <h4 class="page-heading center-align">Articles</h4>
    </div>

    <div class="row">

        {% for post in site.posts %}
          <div class="col s12 m6 l4 cards-container">
            <a class="post-link" href="{{ post.url | relative_url }}">
              <div class="card primary z-depth-5">
                <div class="card-title center">
                  <h5 class="title valign-wrapper">
                    {% if post.title-image %}
                      <img class="hide-on-small-only" height="100px" src="/assets/img/{{ post.title-image }}" />
                    {% else %}
                      <img class="hide-on-small-only" height="100px" src="/assets/img/no_image.svg" />
                    {% endif %}
                    <p align="center">{{ post.title | escape }}</p>
                  </h5>
                  <hr />
                </div>
                <div class="post-content center" itemprop="articleBody">
                  <p>{{ post.excerpt }}</p>
                </div>
              </div>
            </a>
          </div>
        {% endfor %}

    </div>
  </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-puzzleduck-2.1.0 _layouts/home.html