Sha256: 7874eceb6f4eec975e110fa84bb9b4dc511e8c7b31f6616550f4d7e72b229488

Contents?: true

Size: 480 Bytes

Versions: 12

Compression:

Stored size: 480 Bytes

Contents

{% comment %}
  The code below dynamically generates a sidebar nav of pages with
  `sidebar_link: true` in the front-matter. See readme for usage.
{% endcomment %}
{% assign pages_list = site.pages %}
{% for node in pages_list %}
  {% if node.title != null %}
    {% if node.sidebar_link %}
      <a class="page-link {% if page.url == node.url %} active{% endif %}"
          href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a>
    {% endif %}
  {% endif %}
{% endfor %}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
jekyll-theme-hydeout-3.6.0 _includes/page-links.html
jekyll-theme-hydeout-3.5.3 _includes/page-links.html
jekyll-theme-hydeout-3.5.2 _includes/page-links.html
jekyll-theme-hydeout-3.5.1 _includes/page-links.html
jekyll-theme-hydeout-3.5.0 _includes/page-links.html
jekyll-theme-hydeout-3.4.3 _includes/page-links.html
jekyll-theme-hydeout-3.4.2 _includes/page-links.html
jekyll-theme-hydeout-3.4.1 _includes/page-links.html
jekyll-theme-hydeout-3.4.0 _includes/page-links.html
jekyll-theme-hydeout-3.3.1 _includes/page-links.html
jekyll-theme-hydeout-3.3.0 _includes/page-links.html
jekyll-theme-hydeout-3.2.0 _includes/page-links.html