main.html 638 B

12345678910111213141516171819202122232425
  1. <head>
  2. <title>tera</title>
  3. </head>
  4. <body>
  5. <h1>Welcome to Meteor!</h1>
  6. {{> hello}}
  7. {{> info}}
  8. </body>
  9. <template name="hello">
  10. <button>Click Me</button>
  11. <p>You've pressed the button {{counter}} times.</p>
  12. </template>
  13. <template name="info">
  14. <h2>Learn Meteor!</h2>
  15. <ul>
  16. <li><a href="https://www.meteor.com/try" target="_blank">Do the Tutorial</a></li>
  17. <li><a href="http://guide.meteor.com" target="_blank">Follow the Guide</a></li>
  18. <li><a href="https://docs.meteor.com" target="_blank">Read the Docs</a></li>
  19. <li><a href="https://forums.meteor.com" target="_blank">Discussions</a></li>
  20. </ul>
  21. </template>