Sha256: 46a8f72868c4236bff4f272eb04eac14bf075091177871e9d83a32a36cbfbed1

Contents?: true

Size: 417 Bytes

Versions: 12

Compression:

Stored size: 417 Bytes

Contents

{% comment %}
  Dynamically generate list of links to all category pages
{% endcomment %}
{% assign pages_list = site.pages %}
{% for node in pages_list %}
  {% if node.title != null %}
    {% if node.layout == "category" %}
      <a class="category-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/category-links.html
jekyll-theme-hydeout-3.5.3 _includes/category-links.html
jekyll-theme-hydeout-3.5.2 _includes/category-links.html
jekyll-theme-hydeout-3.5.1 _includes/category-links.html
jekyll-theme-hydeout-3.5.0 _includes/category-links.html
jekyll-theme-hydeout-3.4.3 _includes/category-links.html
jekyll-theme-hydeout-3.4.2 _includes/category-links.html
jekyll-theme-hydeout-3.4.1 _includes/category-links.html
jekyll-theme-hydeout-3.4.0 _includes/category-links.html
jekyll-theme-hydeout-3.3.1 _includes/category-links.html
jekyll-theme-hydeout-3.3.0 _includes/category-links.html
jekyll-theme-hydeout-3.2.0 _includes/category-links.html