You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
409 B
19 lines
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>
|