Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
17 righe
353 B
17 righe
353 B
<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>
|