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