Desktop markdown wiki app. Built with node, Electron Framework and AngularJS.

index.html 456B

123456789101112131415161718192021
  1. <table class="table-striped">
  2. <thead>
  3. <tr>
  4. <th>Name</th>
  5. <th>Kind</th>
  6. <th>Date Modified</th>
  7. <th>Author</th>
  8. <th>Size</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <tr ng-repeat="file in files track by $index" ng-dblclick="openNote(file)" >
  13. <td>{{file.path}}</td>
  14. <td>{{file.type}}</td>
  15. <td>{{file.modified_at}}</td>
  16. <td>{{file.author}}</td>
  17. <td>{{file.size}}</td>
  18. </tr>
  19. </tbody>
  20. </table>