I am still very new to Meteor so I assume I am messing up something really simple.
I am trying to make a super simple hello world with templates and just feed a string into it.
## client/body.html ##
<body>
<div>
{{> greeter }}
</div>
</body>
## client/templates/greeter.html ##
<template name="greeter">
<h1>Hello {{ name }}</h1>
</template>
## client/greeter.js ##
Template.greeter({ name: "giodamelio" });
My output it just
<h1>Hello </h1>
Why is my template not rendering?