Skip to content

Instantly share code, notes, and snippets.

@sebdah
Created June 24, 2014 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebdah/2beb053f617b06090deb to your computer and use it in GitHub Desktop.
Save sebdah/2beb053f617b06090deb to your computer and use it in GitHub Desktop.
Tutorial: Writing your first Meteor application - Writing the HTML template
<head>
<title>Chat app</title>
</head>
<body>
<h1>Chatapp</h1>
{{> welcome }}
</body>
<template name="welcome">
<p>
Welcome to the example chat app! Please log in to show your username.
</p>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment