First Template

We currently have a useless Meteor app. Time to get something on the page, which isn't always easy with new frameworks!

Create the file client/main.html

/client/main.html

<head>
  <title>Foosboom</title>
</head>

<body>
  <h1>Foosboom</h1>
</body>

It should be on your browser on localhost:3000 if you have your server going (remember just type meteor into the console to get it running).

First sign of life\label