@@ -4,9 +4,15 @@
<body>
<h1>Welcome to TextCircle!</h1>
+ <p>{{> date_display }}</p>
+
{{> editor}}
</body>
+<template name="date_display">
+ {{ current_date }}
+</template>
<template name="editor">
<h2>doc id: {{ docid }}</h2>
{{> sharejsCM docid=docid id="editor" }}
@@ -8,6 +8,13 @@ if (Meteor.isClient) {
return doc ? doc._id : undefined;
}
});
+ Template.date_display.helpers({
+ current_date: function () {
+ return new Date();
+ }
+ });
if (Meteor.isServer) {