textcircle.html 313 B

12345678910111213141516171819
  1. <head>
  2. <title>textcircle</title>
  3. </head>
  4. <body>
  5. <h1>Welcome to TextCircle!</h1>
  6. <p>{{> date_display }}</p>
  7. {{> editor}}
  8. </body>
  9. <template name="date_display">
  10. {{ current_date }}
  11. </template>
  12. <template name="editor">
  13. <h2>doc id: {{ docid }}</h2>
  14. {{> sharejsCM docid=docid id="editor" }}
  15. </template>