mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
17 lines
283 B
HTML
17 lines
283 B
HTML
<head>
|
|
<title>movers</title>
|
|
</head>
|
|
|
|
<body>
|
|
{{> main}}
|
|
</body>
|
|
|
|
<template name="main">
|
|
<div class="container">
|
|
<div class="item red">Red</div>
|
|
<div class="item green">Green</div>
|
|
<div class="item blue">Blue</div>
|
|
<div class="item yellow">Yellow</div>
|
|
</div>
|
|
</template>
|