25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
17 satır
353 B
17 satır
353 B
4 yıl önce
|
<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>
|