Sha256: bd06e070c57fcaf0e9d772636c73e50136c071f12b3b2d1db6fc511129826926

Contents?: true

Size: 840 Bytes

Versions: 4

Compression:

Stored size: 840 Bytes

Contents

---
layout: default
---
{% assign collections = site.collections | sort: 'date' | shift %}

<!-- Main -->
<section id="main">

    <!-- Items -->
    {% for collection in collections %}
    {% if collection.docs.size > 0 %}
    <div class="items">
        {% assign docs = collection.docs | sort: 'date' %}
        {% if forloop.index == 1 %}
        <div class="item intro span-2">
            <h1>{{ site.title }}</h1>
            <p>{{ site.subtitle }}<br/></p>
        </div>
        {% endif %}
        {% for doc in docs %}
        <article class="item thumb span-{{ doc.span }}">
            <h2>{{ doc.title }}</h2>
            <a href="{{ doc.image | absolute_url }}" class="image"><img src="{{ doc.thumb | absolute_url }}" alt=""></a>
        </article>
        {% endfor %}
    </div>
    {% endif %}
    {% endfor %}

</section>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jekyll-theme-parallelism-0.1.5 _layouts/home.html
jekyll-theme-parallelism-0.1.4 _layouts/home.html
jekyll-theme-parallelism-0.1.3 _layouts/home.html
jekyll-theme-parallelism-0.1.2 _layouts/home.html