summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorAlexander Færøy2014-05-31 14:05:44 +0200
committerAlexander Færøy2014-05-31 14:05:44 +0200
commitb15307ad95dc58974d4f18e848bcfbb8fa329779 (patch)
treee13e795ff0dee2bc6a191dfaf5479f2d6d3c85bb /index.html
parent2d0759e6ca5767b48bcc85bf38c2c43d5f0b63b1 (diff)
downloadscripts.irssi.org-b15307ad95dc58974d4f18e848bcfbb8fa329779.tar.bz2
Add scripts.yaml and the scripts table
Diffstat (limited to 'index.html')
-rw-r--r--index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/index.html b/index.html
index d86738e..06b1bbd 100644
--- a/index.html
+++ b/index.html
@@ -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>