Sha256: 784e2ff7d76480283f4cbb564685a0787e83ea23876a79d62934ebe7405fad34

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

---
---
<!DOCTYPE html>
<html lang="{{ site.lang | default: 'en' }}">

  {% include head-docgen.html %}

  <body>

    <main class="page-content" aria-label="Content">
      <h1>Pages</h1>
      {% assign sorted-pages = site.pages | sort: "path" %}
      {% for page in sorted-pages %}
        {% assign file-name = page.path | split: '/' | last %}
        {% unless file-name contains 'scss' %}
          <a href="{{ page.url | relative_url }}">{{ page.path }}</a><br/>
        {% endunless %}
      {% endfor %}

      <br class="clearfix" />

      {% assign sorted-static-files = site.static_files | sort: "path" %}
      {% if sorted-static-files.size > 0 %}
        <h1>Static Files</h1>
        {% for file in sorted-static-files %}
          {% assign file-name = file.path | split: '/' | last %}
          {% unless file-name contains 'scss' %}
            <a href="{{ file.path | relative_url }}">{{ file.path }}</a><br/>
          {% endunless %}
        {% endfor %}
      {% endif %}

      <br class="clearfix" />
      {{ content }}
    </main>

  </body>

</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-docgen-1.2.1 _layouts/index-docgen.html