{% if page.author_profile or layout.author_profile %}{% include author-profile.html %}{% endif %} {% assign navigation = site.data.navigation[page.sidebar.nav] %}
{% if page.sidebar.title %}

{{ page.sidebar.title }}

{% endif %}
    {% for nav in navigation %} {% if nav.url %} {% comment %}internal/external URL check{% endcomment %} {% if nav.url contains "://" %} {% assign domain = "" %} {% else %} {% assign domain = site.url | append: site.baseurl %} {% endif %} {% comment %}set "selected" class on current page{% endcomment %} {% if nav.url == page.url %} {% assign selected = "selected" %} {% else %} {% assign selected = "" %} {% endif %} {% endif %}
  • {{ nav.title }} {% if nav.children != null %}
      {% for child in nav.children %} {% comment %} internal/external URL check {% endcomment %} {% if child.url contains "://" %} {% assign domain = "" %} {% else %} {% assign domain = site.url | append: site.baseurl %} {% endif %} {% comment %} set "active" class on current page {% endcomment %} {% if child.url == page.url %} {% assign class = "" %} {% else %} {% assign class = "text-gray" %} {% endif %}
    • {{ child.title }}
    • {% endfor %}
    {% endif %}
  • {% endfor %}