1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <div class="book-summary">
- <nav role="navigation">
- <div id="book-search-input" role="search">
- <input type="text" placeholder="Type to search" />
- </div>
- <div id="book-search-input-link" role="search">
- <a href="{{site.baseurl}}/assets/search.html">Click to Search</a>
- </div>
- <ul class="summary">
- {% if page.url == "/index.html" or page.url == "/" %}
- <li class="chapter active" data-level="1.1" data-path="{{site.baseurl}}">
- {% else %}
- <li class="chapter" data-level="1.1" data-path="{{site.baseurl}}">
- {% endif %}
- <a href="{{site.baseurl}}/">
- {{ site.title | escape }}
- </a>
- </li>
- <li class="divider"></li>
- {% for collection in site.collections %}
- <!-- <p>{{ collection.label }}</p> -->
- {% if collection.output %}
- {% if collection.label == "posts" %}
- {% assign reversed_posts = site[collection.label] | reverse %}
- {% else %}
- {% assign reversed_posts = site[collection.label] %}
- {% endif %}
- {% for post in reversed_posts %}
- {% if page.url == post.url %}
- <li class="chapter active" data-level="1.2" data-path="{{site.baseurl}}{{post.url}}">
- {% else %}
- <li class="chapter" data-level="1.1" data-path="{{site.baseurl}}{{post.url}}">
- {% endif %}
- <a href="{{site.baseurl}}{{post.url}}">
- {{ post.title | escape }}
- </a>
- {% if site.toc.enabled %}
- {% if page.url == post.url %}
- {% include toc.html html=content h_min=site.toc.h_min h_max=site.toc.h_max %}
- {% endif %}
- {% endif %}
- </li>
- {% endfor %}
- {% if reversed_posts.size > 0 %}
- <li class="divider"></li>
- {% endif %}
- {% endif %}
- {% endfor %}
- </ul>
- </nav>
- </div>
|