<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 –>