MeteorCast #2: Basics of Templates
Basics of Templates
Code
<head>
<title>SpeedyRentals</title>
</head>
<body>
{{> newRental}}
</body>
<template name="newRental">
<h1>New Rental</h1>
<input type="button" value="New Rental" class="new_rental btn btn-primary" />
<div class="rental_form">
<input type="submit" class="rental_submit" />
</div>
</template>
</template>