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 }} →</h2> <div class="content"> {{ item.excerpt }} </div> </a> </article> {% endfor %} {% endif %} </section>
Version data entries
4 entries across 4 versions & 1 rubygems