Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

19 строки
409 B

<template name="mainLayout">
<head>
<title>myapp</title>
</head>
<body>
<!-- {{> loginButtons}}-->
{{> atNavButton}}
<h1>Welcome to Meteor!</h1>
<a href="{{pathFor "mainItem"}}">test url</a>
{{> hello}}
{{> yield}}
</body>
</template>
<template name="hello">
<button>Click Me</button>
<p>You've pressed the button {{counter}} times.</p>
</template>