diff options
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> |
