mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
24 lines
314 B
HTML
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>
|
|
|