12345678910111213141516171819 |
- <head>
- <title>textcircle</title>
- </head>
- <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" }}
- </template>
|