Commit ad452967b6296a15b1272bbe65fe76297fbb23fb

Authored by Ryan Glover
1 parent d1f4dbea89
Exists in master

Remove unused files.

Showing 3 changed files with 0 additions and 33 deletions   Show diff stats
... ... @@ -1 +0,0 @@
1   -/* CSS declarations go here */
base.html
... ... @@ -1,13 +0,0 @@
1   -<head>
2   - <title>base</title>
3   -</head>
4   -
5   -<body>
6   - {{> hello}}
7   -</body>
8   -
9   -<template name="hello">
10   - <h1>Hello World!</h1>
11   - {{greeting}}
12   - <input type="button" value="Click" />
13   -</template>
... ... @@ -1,19 +0,0 @@
1   -if (Meteor.isClient) {
2   - Template.hello.greeting = function () {
3   - return "Welcome to base.";
4   - };
5   -
6   - Template.hello.events({
7   - 'click input': function () {
8   - // template data, if any, is available in 'this'
9   - if (typeof console !== 'undefined')
10   - console.log("You pressed the button");
11   - }
12   - });
13   -}
14   -
15   -if (Meteor.isServer) {
16   - Meteor.startup(function () {
17   - // code to run on server at startup
18   - });
19   -}