diff options
Diffstat (limited to 'examples/nodejs-mongodb-mongoose-restify/templates')
5 files changed, 0 insertions, 24 deletions
diff --git a/examples/nodejs-mongodb-mongoose-restify/templates/dashboard/page.html b/examples/nodejs-mongodb-mongoose-restify/templates/dashboard/page.html deleted file mode 100644 index e508149..0000000 --- a/examples/nodejs-mongodb-mongoose-restify/templates/dashboard/page.html +++ /dev/null @@ -1,3 +0,0 @@ - -<h3>Guestbook</h3> - diff --git a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/form.html b/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/form.html deleted file mode 100644 index daf224e..0000000 --- a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/form.html +++ /dev/null @@ -1,2 +0,0 @@ -<textarea class="message"></textarea> -<button class="post-message">Post Message</button> diff --git a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html b/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html deleted file mode 100644 index 705229a..0000000 --- a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/list.html +++ /dev/null @@ -1,6 +0,0 @@ -<% _.each(messages, function(message) { %> -<!-- This isn't great sanitization and you will want something more secure for outputting untrusted data to the page --> -<pre class="message"><%= message.get('message').replace(/</g, '<') %></pre> -<em class="date"><%= message.get('date') %></em> - -<% }); %> diff --git a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/template.html b/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/template.html deleted file mode 100644 index 2bb9d88..0000000 --- a/examples/nodejs-mongodb-mongoose-restify/templates/guestbook/template.html +++ /dev/null @@ -1,4 +0,0 @@ - -<div class="guestbook-form-container"></div> -<hr /> -<div class="guestbook-list-container"></div> diff --git a/examples/nodejs-mongodb-mongoose-restify/templates/layout.html b/examples/nodejs-mongodb-mongoose-restify/templates/layout.html deleted file mode 100644 index d3e6f7d..0000000 --- a/examples/nodejs-mongodb-mongoose-restify/templates/layout.html +++ /dev/null @@ -1,9 +0,0 @@ -<div class="header"> - <h1>Node.js, MongoDb, Mongoose, Restify</h1> - <strong>My example server is currently down, sorry guys will try get it up and running asap</strong> - -</div> -<div style="clear: both;"></div> -<div class="page">Loading</div> -<div style="clear: both;"></div> -<div class="footer"></div> |