Sha256: cb266d8232354c326c6f279e68ebcf01f630b9e41216f8a3dfc909f7df220ce9

Contents?: true

Size: 1005 Bytes

Versions: 4

Compression:

Stored size: 1005 Bytes

Contents

<section class="c-notebook"
         itemscope
         itemtype="http://schema.org/ItemList">

  {% if include.title %}
    <h1 class="c-notebook__headline"
        itemprop="name">{{ include.title }}</h1>
  {% endif %}

  <ul class="o-list-bare  c-notebook__list">
    {% for post in site.posts limit:include.limit %}
      <li class="c-notebook__item"
          itemprop="itemListElement"
          itemscope
          itemtype="http://schema.org/ListItem">

        <article itemprop="item"
                 itemscope
                 itemType="http://schema.org/BlogPosting">

          {% include post-head.html date=post.date title=post.title url=post.url %}

          <p class="c-notebook__excerpt">{{ post.excerpt | strip_html | normalize_whitespace | truncate: 256 | escape }}</p>

        </article>

      </li>
    {% endfor %}
  </ul>

  {% if include.limit %}
    {% include see-more.html label=include.see-more permalink=include.permalink %}
  {% endif %}

</section><!-- /c-notebook -->

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
alna-jekyll-theme-1.0.1 _includes/notebook.html
alna-jekyll-theme-1.0.0 _includes/notebook.html
alna-jekyll-theme-0.1.9 _includes/notebook.html
alna-jekyll-theme-0.1.8 _includes/notebook.html