Sha256: 78d9d20f7c25aeb9d82685995a98970d871830b1bcb3bbe5e85b50be30d970f1

Contents?: true

Size: 507 Bytes

Versions: 2

Compression:

Stored size: 507 Bytes

Contents

    {%-
        assign files =
          site.static_files
          | where_exp: "file", "file.extname contains '.htm'"
    -%}

    {%- if files.size > 0 %}    <ul>
      {%- for file in files -%}
        {%-
            assign path =
              file.path
              | remove_first: page.url
              | remove_first: "/index.html"
        %}
      <li>
        <a href="{{- path | append: "/" -}}">
          {{- path -}}
        </a>
      </li>
      {%- endfor %}
    </ul>
    {%- endif %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-plain-0.6.0 _includes/directory-listing.html
jekyll-theme-plain-0.5.0 _includes/directory-listing.html