Sha256: 70360ca826429b8c87d9de75463ca8cdb5c6cb7f2d601ebe7f21bd1f0006f237

Contents?: true

Size: 797 Bytes

Versions: 4

Compression:

Stored size: 797 Bytes

Contents

<ul class="nav nav-list">
  <li><a href="{{ site.baseurl }}/">Home</a></li>
  {% for section in site.sections %}
    {% assign attr = section[0] %}
    {% assign label = section[1] %}
    <li class=nav-header>{{ label }}</li>
    {% for page in site.pages %}
{% if page.published != false %}
      {% if page.category == attr %}     
        <li data-order="{{ page.order }}">
          {% if page.link %}
            <a href="{{ page.link }}">{{ page.title }}</a>
          {% else %}
            <a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a>
          {% endif %}
        </li>
      {% endif %}
{% endif %}
    {% endfor %}
  {% endfor %}
<!-- List additional links. It is recommended to add a divider
    e.g. <li class=divider></li> first to break up the content. -->
</ul>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
chatterbot-2.2.0 docs/_includes/navigation.html
chatterbot-2.1.0 docs/_includes/navigation.html
chatterbot-2.0.5 docs/_includes/navigation.html
chatterbot-2.0.4 docs/_includes/navigation.html