Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

Your template is rendering, but there are three problems: (1) change name to myName or something because it is a reserved word, (2) collapse {{ name }} into {{myName}} (no spaces); and (3) the {{myName}} will still be blank because your wire-up code is a bit off. Replace what you have in your greeter.js with this:

Template.greeter.myName = function() {
   return "giodamelio"
};
share|improve this answer
That didn't make any difference. I am still getting the same thing. – giodamelio Jan 20 at 21:50
I just took another look...edited my answer. Change {{ name }} to just {{name}} – TimDog Jan 20 at 21:53
Still nothing. Just a blink space. – giodamelio Jan 20 at 22:06
1  
Ugh. name is a reserved word! I edited my answer and tested it :) – TimDog Jan 20 at 22:11
There we go. Thanks. – giodamelio Jan 20 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.