UNPKG

slush-mongo

Version:

A slush generator for MongoDB, which can scaffold Express/Mongojs, Express/Mongoose, Express/Mongoskin and Koa/Monk apps

45 lines 1.54 kB
<!DOCTYPE html> <html> <head> <title><%= siteName %></title> <link rel="stylesheet" href="/css/style.css"> </head> <body> <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="javascript:"><%= siteName %></a> </div> </div> </div> <div class="container"> <h1>Routes</h1> <%if (typeof routes != 'undefined') { %> <table class="table table-striped"> <thead> <tr> <th>#</th> <th>Path</th> <th>Method</th> <th>Link</th> </tr> </thead> <tbody> <% i = 1%> <% (routes).forEach(function(appRoute){ %> <%if (typeof appRoute.route != 'undefined') { %> <tr> <td><%= i++ %></td> <td><%= appRoute.route.path %></td> <td><%= appRoute.route.stack[0].method %></td> <td><a href="<%= appRoute.route.path %>" title="<%= appRoute.route.path %>"><%= appRoute.route.path %></a></td> </tr> <% } %> <% });%> </tbody> </table> <% } %> </div> <script type="text/javascript" src="/js/script.js"></script> </body> </html>