templates.html 636 B

123456789101112131415161718
  1. <template name="notfound">
  2. {{ > message label='page-not-found'}}
  3. </template>
  4. <template name='message'>
  5. <div class="big-message quiet {{ color }}">
  6. <h1>{{_ label}}</h1>
  7. {{#with pathFor route='atSignIn'}}
  8. <p>{{{_ 'page-maybe-private' this}}}</p>
  9. {{/with}}
  10. </div>
  11. </template>
  12. <template name="editor">
  13. <textarea class="{{class}}" placeholder="{{_ 'comment-placeholder'}}" id="{{id}}" autofocus="{{autofocus}}">{{> UI.contentBlock}}</textarea>
  14. </template>
  15. <template name="viewer">{{#markdown}}{{#emoji}}{{#mentions}}{{> UI.contentBlock }}{{/mentions}}{{/emoji}}{{/markdown}}</template>