Files
meteor/examples/unfinished/benchmark/benchmark.html
2012-11-15 22:56:59 -08:00

24 lines
314 B
HTML

<head>
<title>benchmark</title>
</head>
<body>
{{> status}}
{{> params}}
</body>
<template name="status">
<p>Status: {{status}}</p>
<p>Update Rate: {{updateRate}}</p>
</template>
<template name="params">
<dl>
{{#each params}}
<dt>{{key}}</dt><dd>{{value}}</dd>
{{/each}}
</dl>
</template>