🏡 index : old_projects/debreader.github.io.git

---
layout: default
cover: false
---

<header>
  <h1>{{ site.name }}</h1>
</header>

<hr class="stylish"/>

<main class="home-main">
  {% for collection in site.collections %}
    {% if collection.docs.size > 0 %}
    <section id="posts">
      <details {% if collection.default_open %}open{% endif %}>
        <summary>
          <h3 class="home-page-heading">{{ collection.title }}</h3>
        </summary>
        <div class="parent">
          {% for post in collection.docs %}
          <div class="post-wrapper">
            <a class="post-link" href="{{ post.url }}">
              {{ post.title }}
            </a>
          </div>
          {% endfor %}
        </div>
      </details>
    </section>
    {% endif %}
  {% endfor %}
</main>