summaryrefslogtreecommitdiffstats
path: root/client/components/main/templates.html
blob: e9be0f93dcef968936e8029ab3f8cbc371976f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template name="notfound">
    {{ > message label='page-not-found'}}
</template>

<template name='message'>
    <div class="big-message quiet {{ color }}">
        <h1>{{_ label}}</h1>
        {{#with pathFor route='Login'}}
            <p>{{{_ 'page-maybe-private' this}}}</p>
        {{/with}}
    </div>
</template>

<template name="editor">
    <textarea class="{{class}}" placeholder="{{_ 'comment-placeholder'}}" id="{{id}}" tabindex="1">{{> UI.contentBlock }}</textarea>
</template>

<template name="viewer">{{#markdown}}{{#emoji}}{{#mentions}}{{> UI.contentBlock }}{{/mentions}}{{/emoji}}{{/markdown}}</template>