diff options
| author | Alexander Færøy | 2014-05-31 14:05:44 +0200 | 
|---|---|---|
| committer | Alexander Færøy | 2014-05-31 14:05:44 +0200 | 
| commit | b15307ad95dc58974d4f18e848bcfbb8fa329779 (patch) | |
| tree | e13e795ff0dee2bc6a191dfaf5479f2d6d3c85bb /index.html | |
| parent | 2d0759e6ca5767b48bcc85bf38c2c43d5f0b63b1 (diff) | |
| download | scripts.irssi.org-b15307ad95dc58974d4f18e848bcfbb8fa329779.tar.bz2 | |
Add scripts.yaml and the scripts table
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 23 | 
1 files changed, 23 insertions, 0 deletions
| @@ -38,6 +38,29 @@ layout: default          </dl>          <hr> + +        <table class="table table-striped table-condensed"> +            <thead> +                <tr> +                    <th>Filename</th> +                    <th>Name</th> +                    <th>Version</th> +                    <th>Description</th> +                    <th>Author</th> +                </tr> +            </thead> +            <tbody> +            {% for script in site.data.scripts %} +                <tr> +                    <td><a href="scripts/{{ script.filename }}">{{ script.filename }}</a></td> +                    <td>{{ script.name }}</td> +                    <td>{{ script.version }}</td> +                    <td>{{ script.description }}</td> +                    <td>{{ script.author }}</td> +                </td> +            {% endfor %} +            </tbody> +        </table>      </div>  </div> | 
