選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
17 行
353 B
17 行
353 B
4年前
|
<template name="mainLayout">
|
||
|
<head>
|
||
|
<title>myapp</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<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>
|