Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. My code as follows
  2. this is basic.js
  3.  
  4. Router.map(function() {
  5. this.route('hi', {
  6. path: '/hi',"enter code here"
  7. template: 'hello'
  8. });
  9. });
  10.  
  11. # this is basic.html
  12.  
  13. <head>
  14. <title>Meteor Routing Test</title>
  15. </head>
  16.  
  17. <body>
  18. {{> yield}}
  19. </body>
  20.  
  21. <template name="hello">
  22. <h1>Hello World!</h1>
  23. </template>
  24.  
  25. Can you please guide me if i am doing something wrong enter code here. I am opening this in http://locahost:3000 and http://locahost:3000/hi but not at all working
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement