Sha256: a8e83dcafc51f863f6f04ef0fc5ba3572bd8c998edbe8d7aa8be6345e1e4ea6f

Contents?: true

Size: 347 Bytes

Versions: 1

Compression:

Stored size: 347 Bytes

Contents

{% capture NOOUT %}
  {% if site.docs %}
    {% assign sorted_docs = site.docs | sort: 'order' %}
  {% else %}
    {% assign sorted_docs = site.empty_array %}
  {% endif %}
{% endcapture %}
<h2>Documents</h2>
<ol>
  {% for doc in sorted_docs %}
    <li><a href="{{ doc.url | prepend: site.baseurl }}">{{ doc.title }}</a></li>
  {% endfor %}
</ol>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-polar-1.0.0 _includes/listing/docs.html