templates.html 576 B

1234567891011121314151617
  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. <!-- XXX This should be moved to editor.jade but there is an issue with jade
  13. handling of the markdown component. -->
  14. <template name="viewer">{{#markdown}}{{#emoji}}{{#mentions}}{{> UI.contentBlock }}{{/mentions}}{{/emoji}}{{/markdown}}</template>