simple-todos.html 233 B

1234567891011121314
  1. <head>
  2. <title>simple-todos</title>
  3. </head>
  4. <body>
  5. <h1>Welcome to Meteor!</h1>
  6. {{> hello}}
  7. </body>
  8. <template name="hello">
  9. <button>Click Me Amadeus</button>
  10. <p>You've pressed the button {{counter}} times.</p>
  11. </template>