2023-03-20 18:04:09 +00:00
|
|
|
<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 %}
|
|
|
|
|
2023-03-29 15:21:03 +00:00
|
|
|
<li>
|
|
|
|
|
2023-03-29 15:43:20 +00:00
|
|
|
<a href="/readme">
|
2023-03-29 15:21:03 +00:00
|
|
|
Readme
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
2023-03-29 15:43:20 +00:00
|
|
|
</i>
|
|
|
|
|
2023-03-29 15:21:03 +00:00
|
|
|
|
|
|
|
|
2023-03-20 18:04:09 +00:00
|
|
|
<li>
|
2023-03-29 15:21:03 +00:00
|
|
|
|
|
|
|
<a href="https://github.com/DECENTRALIZEDCLIMATE/docs" target="blank" class="gitbook-link">
|
2023-03-20 18:04:09 +00:00
|
|
|
Fork it Now!
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|