Sha256: c0cefbd433aa0e21fd8215de6a91b916e0ab7697bf4689ddea0d2b190ab0f6c9

Contents?: true

Size: 663 Bytes

Versions: 4

Compression:

Stored size: 663 Bytes

Contents

<h1>{{ include.collection.label | capitalize }}</h1>

{% assign docs = include.collection.docs | where: 'draft', false %}
<section class="collection-index">
  {% if docs.size == 0 %}
    <p>No {{ include.collection.label }} found.</p>
  {% else %}
    {% for item in docs %}
{% comment %}
<pre><code>
{{ item | inspect }}
</pre></code>
{% endcomment %}
      <article{% cycle '', ' class="alternate"' %}>
        <a href="{{ item.url | relative_url }}">
          <h2>{{ item.title | escape }}&nbsp;&rarr;</h2>
          <div class="content">
            {{ item.excerpt }}
          </div>
        </a>
      </article>
    {% endfor %}
  {% endif %}
</section>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phantom-blergh-0.1.4 _includes/collection-index.html
phantom-blergh-0.1.3 _includes/collection-index.html
phantom-blergh-0.1.2 _includes/collection-index.html
phantom-blergh-0.1.1 _includes/collection-index.html